0fcdd9ce36cf24e1986ece4ea2e46fdb64860315
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / OperationInputDefinition.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 package org.openecomp.sdc.be.datatypes.elements;
17
18
19 import com.fasterxml.jackson.annotation.JsonCreator;
20 import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
21
22
23 public class OperationInputDefinition extends InputDataDefinition {
24     private String source;
25     private String sourceProperty;
26     private String toscaDefaultValue;
27
28     @JsonCreator
29     public OperationInputDefinition() {
30         super();
31     }
32
33     public OperationInputDefinition(String name, InputDataDefinition inputDefinition, String source, String sourceProperty) {
34         super(inputDefinition);
35         setName(name);
36         setSource(source);
37         setSourceProperty(sourceProperty);
38     }
39
40     public OperationInputDefinition(OperationInputDefinition oid) {
41         super(oid);
42         setName(oid.getName());
43         setSource(oid.getSource());
44         setSourceProperty(oid.getSourceProperty());
45     }
46
47     public OperationInputDefinition(String name, String property, Boolean mandatory, String type) {
48         super();
49         setName(name);
50         setInputId(property);
51         setRequired(mandatory);
52         setType(type);
53     }
54
55     public String getLabel() {
56         return (String) getToscaPresentationValue(JsonPresentationFields.ARTIFACT_LABEL);
57     }
58
59     public void setLabel(String name) {
60         setToscaPresentationValue(JsonPresentationFields.ARTIFACT_LABEL, name);
61     }
62
63     public String getSource() {
64         return source;
65     }
66
67     public void setSource(String source) {
68         this.source = source;
69     }
70
71     public String getSourceProperty() {
72         return sourceProperty;
73     }
74
75     public void setSourceProperty(String sourceProperty) {
76         this.sourceProperty = sourceProperty;
77     }
78
79     public String getToscaDefaultValue() {
80         return toscaDefaultValue;
81     }
82
83     public void setToscaDefaultValue(String toscaDefaultValue) {
84         this.toscaDefaultValue = toscaDefaultValue;
85     }
86 }