Reformat common-be
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / GroupTypeDataDefinition.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.datatypes.elements;
21
22 import java.util.List;
23 import java.util.Map;
24 import lombok.Getter;
25 import lombok.NoArgsConstructor;
26 import lombok.Setter;
27 import lombok.ToString;
28
29 @Getter
30 @Setter
31 @NoArgsConstructor
32 @ToString
33 public class GroupTypeDataDefinition extends ToscaTypeDataDefinition {
34
35     private String uniqueId;
36     private String version;
37     private String derivedFrom;
38     private List<String> members;
39     private Map<String, String> metadata;
40     private String description;
41     private boolean highestVersion;
42     /**
43      * Timestamp of data type creation
44      */
45     private Long creationTime;
46     /**
47      * Timestamp of the data type last update
48      */
49     private Long modificationTime;
50
51     public GroupTypeDataDefinition(GroupTypeDataDefinition other) {
52         super(other);
53         this.uniqueId = other.uniqueId;
54         this.version = other.version;
55         this.members = other.members;
56         this.metadata = other.metadata;
57         this.description = other.description;
58         this.creationTime = other.creationTime;
59         this.modificationTime = other.modificationTime;
60         this.highestVersion = other.highestVersion;
61         this.derivedFrom = other.derivedFrom;
62     }
63 }