[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / datatypes / model / DataType.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
21 package org.openecomp.sdc.tosca.datatypes.model;
22
23 import java.util.List;
24 import java.util.Map;
25
26 public class DataType {
27
28   private String derived_from;
29   private String version;
30   private String description;
31   private List<Constraint> constraints;
32   private Map<String, PropertyDefinition> properties;
33
34   public String getDerived_from() {
35     return derived_from;
36   }
37
38   public void setDerived_from(String derivedFrom) {
39     this.derived_from = derivedFrom;
40   }
41
42   public String getVersion() {
43     return version;
44   }
45
46   public void setVersion(String version) {
47     this.version = version;
48   }
49
50   public String getDescription() {
51     return description;
52   }
53
54   public void setDescription(String description) {
55     this.description = description;
56   }
57
58   public List<Constraint> getConstraints() {
59     return constraints;
60   }
61
62   public void setConstraints(List<Constraint> constraints) {
63     this.constraints = constraints;
64   }
65
66   public Map<String, PropertyDefinition> getProperties() {
67     return properties;
68   }
69
70   public void setProperties(Map<String, PropertyDefinition> properties) {
71     this.properties = properties;
72   }
73 }