re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / UploadPropInfo.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.model;
22
23 import org.openecomp.sdc.be.datatypes.elements.GetInputValueDataDefinition;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28
29 public class UploadPropInfo extends UploadInfo {
30
31     private Object value;
32
33     private String description;
34
35     private boolean password;
36
37     private List<GetInputValueDataDefinition> get_input;
38
39     public List<GetInputValueDataDefinition> getGet_input() {
40         if (get_input == null) {
41             get_input = new ArrayList<>();
42         }
43         return get_input;
44     }
45
46     public void setGet_input(List<GetInputValueDataDefinition> get_input) {
47         this.get_input = get_input;
48     }
49
50     public Object getValue() {
51         return value;
52     }
53
54     public void setValue(Object value) {
55         this.value = value;
56     }
57
58     public String getDescription() {
59         return description;
60     }
61
62     public void setDescription(String description) {
63         this.description = description;
64     }
65
66     public boolean isPassword() {
67         return password;
68     }
69
70     public void setPassword(boolean password) {
71         this.password = password;
72     }
73
74 }