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