c32eed9d7a3a5a98349e6554c8980c1aeca580c4
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaAttribute.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.be.tosca.model;
18
19 public class ToscaAttribute {
20
21     private String type;
22     private String description;
23     private Object _defaultp_;
24     private String status;
25     private EntrySchema entry_schema;
26
27     public ToscaAttribute() {
28     }
29
30     public String getType() {
31         return type;
32     }
33
34     public void setType(String type) {
35         this.type = type;
36     }
37
38     public String getDescription() {
39         return description;
40     }
41
42     public void setDescription(String description) {
43         this.description = description;
44     }
45
46     public Object getDefaultp() {
47         return _defaultp_;
48     }
49
50     public void setDefaultp(Object defaultp) {
51         this._defaultp_ = defaultp;
52     }
53
54     public String getStatus() {
55         return status;
56     }
57
58     public void setStatus(String status) {
59         this.status = status;
60     }
61
62     public EntrySchema getEntry_schema() {
63         return entry_schema;
64     }
65
66     public void setEntry_schema(EntrySchema entry_schema) {
67         this.entry_schema = entry_schema;
68     }
69 }