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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.cps.spi.entities;
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;
34 import lombok.NoArgsConstructor;
39 * Entity to store a dataspace.
46 @Table(name = "dataspace")
47 public class DataspaceEntity implements Serializable {
49 private static final long serialVersionUID = 8395254649813051882L;
52 @GeneratedValue(strategy = GenerationType.IDENTITY)
56 @Column(columnDefinition = "text")
60 * Initialize a Dataspace .
62 * @param name the Dataspace name.
64 public DataspaceEntity(final String name) {