Revert "Migrate CPS to Spring-boot 3.0"
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / entities / SchemaSetEntity.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 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 java.util.Set;
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.JoinTable;
32 import javax.persistence.ManyToMany;
33 import javax.persistence.ManyToOne;
34 import javax.persistence.Table;
35 import javax.validation.constraints.NotNull;
36 import lombok.Getter;
37 import lombok.NoArgsConstructor;
38 import lombok.Setter;
39
40 /**
41  * Entity to store a Schema Set.
42  */
43 @Getter
44 @Setter
45 @NoArgsConstructor
46 @Entity
47 @Table(name = "schema_set")
48 public class SchemaSetEntity implements Serializable {
49
50     private static final long serialVersionUID = 6665056955069047269L;
51
52     @Id
53     @GeneratedValue(strategy = GenerationType.IDENTITY)
54     private Integer id;
55
56     @NotNull
57     @Column
58     private String name;
59
60     @NotNull
61     @ManyToOne(fetch = FetchType.LAZY)
62     @JoinColumn(name = "dataspace_id", referencedColumnName = "ID")
63     private DataspaceEntity dataspace;
64
65     @NotNull
66     @ManyToMany(fetch = FetchType.LAZY)
67     @JoinTable(name = "schema_set_yang_resources",
68         joinColumns = @JoinColumn(name = "schema_set_id"),
69         inverseJoinColumns = @JoinColumn(name = "yang_resource_id"))
70     private Set<YangResourceEntity> yangResources;
71 }