Fix for quickfind with descendants incl. list entries
[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  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.cps.spi.entities;
21
22 import java.io.Serializable;
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.FetchType;
26 import javax.persistence.GeneratedValue;
27 import javax.persistence.GenerationType;
28 import javax.persistence.Id;
29 import javax.persistence.JoinColumn;
30 import javax.persistence.ManyToOne;
31 import javax.persistence.Table;
32 import javax.validation.constraints.NotNull;
33 import lombok.AllArgsConstructor;
34 import lombok.Builder;
35 import lombok.Getter;
36 import lombok.NoArgsConstructor;
37 import lombok.Setter;
38
39 /**
40  * Entity to store an anchor.
41  */
42 @Getter
43 @Setter
44 @NoArgsConstructor
45 @AllArgsConstructor
46 @Builder
47 @Entity
48 @Table(name = "anchor")
49 public class AnchorEntity implements Serializable {
50
51     private static final long serialVersionUID = -8049987915308262518L;
52
53     @Id
54     @GeneratedValue(strategy = GenerationType.IDENTITY)
55     private Integer id;
56
57     @NotNull
58     @Column
59     private String name;
60
61     @NotNull
62     @ManyToOne(fetch = FetchType.LAZY)
63     @JoinColumn(name = "schema_set_id")
64     private SchemaSetEntity schemaSet;
65
66     @NotNull
67     @ManyToOne(fetch = FetchType.LAZY)
68     @JoinColumn(name = "dataspace_id")
69     private DataspaceEntity dataspace;
70 }