[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / datatypes / model / CapabilityDefinition.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 org.openecomp.sdc.tosca.services.DataModelUtil;
24 import org.openecomp.sdc.tosca.services.ToscaConstants;
25
26 import java.util.List;
27 import java.util.Map;
28
29 public class CapabilityDefinition {
30
31   private String type;
32   private String description;
33   private Map<String, PropertyDefinition> properties;
34   private Map<String, AttributeDefinition> attributes;
35   private List<String> valid_source_types;
36   private Object[] occurrences;
37
38
39   /**
40    * Instantiates a new Capability definition.
41    */
42   public CapabilityDefinition() {
43     occurrences = new Object[2];
44     occurrences[0] = 1;
45     occurrences[1] = ToscaConstants.UNBOUNDED;
46   }
47
48   public String getType() {
49     return type;
50   }
51
52   public void setType(String type) {
53     this.type = type;
54   }
55
56   public String getDescription() {
57     return description;
58   }
59
60   public void setDescription(String description) {
61     this.description = description;
62   }
63
64   public Map<String, PropertyDefinition> getProperties() {
65     return properties;
66   }
67
68   public void setProperties(Map<String, PropertyDefinition> properties) {
69     this.properties = properties;
70   }
71
72   public Map<String, AttributeDefinition> getAttributes() {
73     return attributes;
74   }
75
76   public void setAttributes(Map<String, AttributeDefinition> attributes) {
77     this.attributes = attributes;
78   }
79
80   public List<String> getValid_source_types() {
81     return valid_source_types;
82   }
83
84   public void setValid_source_types(List<String> validSourceTypes) {
85     this.valid_source_types = validSourceTypes;
86   }
87
88   public Object[] getOccurrences() {
89     return occurrences;
90   }
91
92   public void setOccurrences(Object[] occurrences) {
93     this.occurrences = occurrences;
94   }
95
96   @Override
97   public CapabilityDefinition clone() {
98     CapabilityDefinition capabilityDefinition = new CapabilityDefinition();
99     capabilityDefinition
100         .setOccurrences(new Object[]{this.getOccurrences()[0], this.getOccurrences()[1]});
101     capabilityDefinition
102         .setProperties(DataModelUtil.clonePropertyDefinitions(this.getProperties()));
103     capabilityDefinition.setType(this.getType());
104     capabilityDefinition
105         .setAttributes(DataModelUtil.cloneAttributeDefinitions(this.getAttributes()));
106     capabilityDefinition.setDescription(this.getDescription());
107     capabilityDefinition
108         .setValid_source_types(DataModelUtil.cloneValidSourceTypes(this.getValid_source_types()));
109     return capabilityDefinition;
110
111   }
112
113 }