Merge "Sensible equals and hashCode for FragmentEntity (CPS-1664 #1)"
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / entities / FragmentEntity.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020-2023 Nordix Foundation.
4  * Modifications Copyright (C) 2021 Pantheon.tech
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.spi.entities;
23
24 import io.hypersistence.utils.hibernate.type.json.JsonBinaryType;
25 import java.io.Serializable;
26 import java.util.Set;
27 import javax.persistence.CascadeType;
28 import javax.persistence.Column;
29 import javax.persistence.Entity;
30 import javax.persistence.FetchType;
31 import javax.persistence.GeneratedValue;
32 import javax.persistence.GenerationType;
33 import javax.persistence.Id;
34 import javax.persistence.JoinColumn;
35 import javax.persistence.ManyToOne;
36 import javax.persistence.OneToMany;
37 import javax.persistence.OneToOne;
38 import javax.persistence.Table;
39 import javax.validation.constraints.NotNull;
40 import lombok.AllArgsConstructor;
41 import lombok.Builder;
42 import lombok.Data;
43 import lombok.EqualsAndHashCode;
44 import lombok.Getter;
45 import lombok.NoArgsConstructor;
46 import lombok.Setter;
47 import lombok.ToString;
48 import org.hibernate.annotations.Type;
49 import org.hibernate.annotations.TypeDef;
50
51 /**
52  * Entity to store a fragment.
53  */
54 @Data
55 @Getter
56 @Setter
57 @AllArgsConstructor
58 @NoArgsConstructor
59 @Builder
60 @Entity
61 @Table(name = "fragment")
62 @TypeDef(name = "jsonb", typeClass = JsonBinaryType.class)
63 @EqualsAndHashCode(onlyExplicitlyIncluded = true)
64 public class FragmentEntity implements Serializable {
65
66     private static final long serialVersionUID = 7737669789097119667L;
67
68     @Id
69     @GeneratedValue(strategy = GenerationType.IDENTITY)
70     private Long id;
71
72     @NotNull
73     @Column(columnDefinition = "text")
74     @EqualsAndHashCode.Include
75     private String xpath;
76
77     @Column(name = "parent_id")
78     private Long parentId;
79
80     @Type(type = "jsonb")
81     @Column(columnDefinition = "jsonb")
82     private String attributes;
83
84     @NotNull
85     @ManyToOne(fetch = FetchType.LAZY)
86     @JoinColumn(name = "dataspace_id")
87     private DataspaceEntity dataspace;
88
89     @OneToOne(fetch = FetchType.LAZY)
90     @JoinColumn(name = "anchor_id")
91     @EqualsAndHashCode.Include
92     private AnchorEntity anchor;
93
94     @ToString.Exclude
95     @OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.LAZY)
96     @JoinColumn(name = "parent_id")
97     private Set<FragmentEntity> childFragments;
98 }