[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / datatypes / model / ArtifactType.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 ArtifactType {
27
28   private String derived_from;
29   private String version;
30   private String description;
31   private String mime_type;
32   private List<String> file_ext;
33   private Map<String, PropertyDefinition> properties;
34
35
36   public String getDerived_from() {
37     return derived_from;
38   }
39
40   public void setDerived_from(String derivedFrom) {
41     this.derived_from = derivedFrom;
42   }
43
44   public String getVersion() {
45     return version;
46   }
47
48   public void setVersion(String version) {
49     this.version = version;
50   }
51
52   public String getDescription() {
53     return description;
54   }
55
56   public void setDescription(String description) {
57     this.description = description;
58   }
59
60   public String getMime_type() {
61     return mime_type;
62   }
63
64   public void setMime_type(String mimeType) {
65     this.mime_type = mimeType;
66   }
67
68   public List<String> getFile_ext() {
69     return file_ext;
70   }
71
72   public void setFile_ext(List<String> fileExt) {
73     this.file_ext = fileExt;
74   }
75
76   public Map<String, PropertyDefinition> getProperties() {
77     return properties;
78   }
79
80   public void setProperties(Map<String, PropertyDefinition> properties) {
81     this.properties = properties;
82   }
83 }