Revert "Migrate CPS to Spring-boot 3.0"
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / entities / DataspaceEntity.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2023 Nordix Foundation.
4  *  Modifications Copyright (C) 2020-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 java.io.Serializable;
25 import javax.persistence.Column;
26 import javax.persistence.Entity;
27 import javax.persistence.GeneratedValue;
28 import javax.persistence.GenerationType;
29 import javax.persistence.Id;
30 import javax.persistence.Table;
31 import javax.validation.constraints.NotNull;
32 import lombok.AllArgsConstructor;
33 import lombok.EqualsAndHashCode;
34 import lombok.Getter;
35 import lombok.NoArgsConstructor;
36 import lombok.Setter;
37
38
39 /**
40  * Entity to store a dataspace.
41  */
42 @Getter
43 @Setter
44 @Entity
45 @AllArgsConstructor
46 @NoArgsConstructor
47 @Table(name = "dataspace")
48 @EqualsAndHashCode(onlyExplicitlyIncluded = true)
49 public class DataspaceEntity implements Serializable {
50
51     private static final long serialVersionUID = 8395254649813051882L;
52
53     @Id
54     @GeneratedValue(strategy = GenerationType.IDENTITY)
55     private Integer id;
56
57     @NotNull
58     @Column(columnDefinition = "text")
59     @EqualsAndHashCode.Include
60     private String name;
61
62     /**
63      * Initialize a Dataspace .
64      *
65      * @param name the Dataspace name.
66      */
67     public DataspaceEntity(final String name) {
68         this.name = name;
69     }
70 }