Fix for quickfind with descendants incl. list entries
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / entities / DataspaceEntity.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2021 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.Getter;
34 import lombok.NoArgsConstructor;
35 import lombok.Setter;
36
37
38 /**
39  * Entity to store a dataspace.
40  */
41 @Getter
42 @Setter
43 @Entity
44 @AllArgsConstructor
45 @NoArgsConstructor
46 @Table(name = "dataspace")
47 public class DataspaceEntity implements Serializable {
48
49     private static final long serialVersionUID = 8395254649813051882L;
50
51     @Id
52     @GeneratedValue(strategy = GenerationType.IDENTITY)
53     private Integer id;
54
55     @NotNull
56     @Column(columnDefinition = "text")
57     private String name;
58
59     /**
60      * Initialize a Dataspace .
61      *
62      * @param name the Dataspace name.
63      */
64     public DataspaceEntity(final String name) {
65         this.name = name;
66     }
67 }