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