ActivitySpec - Correcting logger messages
[sdc.git] / common / onap-tosca-datatype / src / main / java / org / onap / 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.onap.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   Map<String, String> metadata;
31   private String description;
32   private List<Constraint> constraints;
33   private Map<String, PropertyDefinition> properties;
34
35   /**
36    * Gets derived from.
37    *
38    * @return the derived from
39    */
40   public String getDerived_from() {
41     return derived_from;
42   }
43
44   /**
45    * Sets derived from.
46    *
47    * @param derived_from the derived from
48    */
49   public void setDerived_from(String derived_from) {
50     this.derived_from = derived_from;
51   }
52
53   /**
54    * Gets version.
55    *
56    * @return the version
57    */
58   public String getVersion() {
59     return version;
60   }
61
62   /**
63    * Sets version.
64    *
65    * @param version the version
66    */
67   public void setVersion(String version) {
68     this.version = version;
69   }
70
71   public Map<String, String> getMetadata() {
72     return metadata;
73   }
74
75   public void setMetadata(Map<String, String> metadata) {
76     this.metadata = metadata;
77   }
78
79   /**
80    * Gets description.
81    *
82    * @return the description
83    */
84   public String getDescription() {
85     return description;
86   }
87
88   /**
89    * Sets description.
90    *
91    * @param description the description
92    */
93   public void setDescription(String description) {
94     this.description = description;
95   }
96
97   /**
98    * Gets constraints.
99    *
100    * @return the constraints
101    */
102   public List<Constraint> getConstraints() {
103     return constraints;
104   }
105
106   /**
107    * Sets constraints.
108    *
109    * @param constraints the constraints
110    */
111   public void setConstraints(List<Constraint> constraints) {
112     this.constraints = constraints;
113   }
114
115   /**
116    * Gets properties.
117    *
118    * @return the properties
119    */
120   public Map<String, PropertyDefinition> getProperties() {
121     return properties;
122   }
123
124   /**
125    * Sets properties.
126    *
127    * @param properties the properties
128    */
129   public void setProperties(Map<String, PropertyDefinition> properties) {
130     this.properties = properties;
131   }
132 }