Revert "Migrate CPS to Spring-boot 3.0"
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / entities / AnchorEntity.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Pantheon.tech
4  *  Modifications Copyright (C) 2023 Nordix Foundation.
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  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.spi.entities;
22
23 import java.io.Serializable;
24 import javax.persistence.Column;
25 import javax.persistence.Entity;
26 import javax.persistence.FetchType;
27 import javax.persistence.GeneratedValue;
28 import javax.persistence.GenerationType;
29 import javax.persistence.Id;
30 import javax.persistence.JoinColumn;
31 import javax.persistence.ManyToOne;
32 import javax.persistence.Table;
33 import javax.validation.constraints.NotNull;
34 import lombok.AllArgsConstructor;
35 import lombok.Builder;
36 import lombok.EqualsAndHashCode;
37 import lombok.Getter;
38 import lombok.NoArgsConstructor;
39 import lombok.Setter;
40
41 /**
42  * Entity to store an anchor.
43  */
44 @Getter
45 @Setter
46 @NoArgsConstructor
47 @AllArgsConstructor
48 @Builder
49 @Entity
50 @Table(name = "anchor")
51 @EqualsAndHashCode(onlyExplicitlyIncluded = true)
52 public class AnchorEntity implements Serializable {
53
54     private static final long serialVersionUID = -8049987915308262518L;
55
56     @Id
57     @GeneratedValue(strategy = GenerationType.IDENTITY)
58     private Long id;
59
60     @NotNull
61     @Column
62     @EqualsAndHashCode.Include
63     private String name;
64
65     @NotNull
66     @ManyToOne(fetch = FetchType.LAZY)
67     @JoinColumn(name = "schema_set_id")
68     private SchemaSetEntity schemaSet;
69
70     @NotNull
71     @ManyToOne(fetch = FetchType.LAZY)
72     @JoinColumn(name = "dataspace_id")
73     @EqualsAndHashCode.Include
74     private DataspaceEntity dataspace;
75 }