[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / datatypes / model / AttributeDefinition.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 public class AttributeDefinition {
24
25   private String type;
26   private String description;
27   private Object _default;
28   private Status status;
29   private EntrySchema entry_schema;
30
31   public AttributeDefinition() {
32     status = Status.SUPPORTED;
33   }
34
35   public EntrySchema getEntry_schema() {
36     return entry_schema;
37   }
38
39   public void setEntry_schema(EntrySchema entrySchema) {
40     this.entry_schema = entrySchema;
41   }
42
43   public Status getStatus() {
44     return status;
45   }
46
47   public void setStatus(Status status) {
48     this.status = status;
49   }
50
51   public Object get_default() {
52     return _default;
53   }
54
55   public void set_default(Object defaultValue) {
56     this._default = defaultValue;
57   }
58
59   public String getDescription() {
60     return description;
61   }
62
63   public void setDescription(String description) {
64     this.description = description;
65   }
66
67   public String getType() {
68     return type;
69   }
70
71   public void setType(String type) {
72     this.type = type;
73   }
74
75   @Override
76   public AttributeDefinition clone() {
77     AttributeDefinition attributeDefinition = new AttributeDefinition();
78     attributeDefinition.setType(this.getType());
79     attributeDefinition.setDescription(this.getDescription());
80     attributeDefinition.set_default(this.get_default());
81     attributeDefinition.setStatus(this.getStatus());
82     attributeDefinition.setEntry_schema(this.getEntry_schema().clone());
83     return attributeDefinition;
84   }
85 }