Implement Attributes/Outputs BE (part 2)
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaProperty.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.be.tosca.model;
22
23 import java.util.List;
24 import java.util.Map;
25 import lombok.Getter;
26 import lombok.NoArgsConstructor;
27 import lombok.Setter;
28
29 @NoArgsConstructor
30 public class ToscaProperty {
31
32     private Object _defaultp_;
33     @Getter
34     @Setter
35     private Object value;
36     @Getter
37     @Setter
38     private String type;
39     @Getter
40     @Setter
41     private String description;
42     @Getter
43     @Setter
44     private Boolean required;
45     @Getter
46     @Setter
47     private EntrySchema entry_schema;
48     @Getter
49     @Setter
50     private List<ToscaPropertyConstraint> constraints;
51     @Getter
52     @Setter
53     private String status;
54     @Getter
55     @Setter
56     private Map<String, String> metadata;
57
58     public ToscaProperty(final ToscaProperty toscaProperty) {
59         this.type = toscaProperty.type;
60         this._defaultp_ = toscaProperty._defaultp_;
61         this.description = toscaProperty.description;
62         this.required = toscaProperty.required;
63         this.entry_schema = toscaProperty.entry_schema;
64         this.status = toscaProperty.status;
65         this.constraints = toscaProperty.constraints;
66         this.metadata = toscaProperty.metadata;
67     }
68
69     public Object getDefaultp() {
70         return _defaultp_;
71     }
72
73     public void setDefaultp(Object defaultp) {
74         this._defaultp_ = defaultp;
75     }
76
77 }