47b6d1b03141a4c82eb401874f01c2856d7c5518
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * eCOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalsdk.analytics.model.definition.wizard;
21
22 import java.util.List;
23
24 public class FormEditJSON implements WizardJSON {
25
26         private String tabId;
27         private String tabName;
28         
29         private String fieldId;
30         private String fieldName;
31         private String fieldType;
32         private boolean visible;
33         private String defaultValue;
34         private String fieldDefaultSQL;
35         private String fieldSQL;
36         private String validationType;
37         private List<IdNameBooleanJSON> predefinedValueList;
38         
39         
40         public String getTabId() {
41                 return tabId;
42         }
43         public void setTabId(String tabId) {
44                 this.tabId = tabId;
45         }
46         public String getTabName() {
47                 return tabName;
48         }
49         public void setTabName(String tabName) {
50                 this.tabName = tabName;
51         }
52         
53         
54         public String getFieldId() {
55                 return fieldId;
56         }
57         public void setFieldId(String fieldId) {
58                 this.fieldId = fieldId;
59         }
60         public String getFieldName() {
61                 return fieldName;
62         }
63         public void setFieldName(String fieldName) {
64                 this.fieldName = fieldName;
65         }
66         
67         public String getFieldType() {
68                 return fieldType;
69         }
70         public void setFieldType(String fieldType) {
71                 this.fieldType = fieldType;
72         }
73         public boolean isVisible() {
74                 return visible;
75         }
76         public void setVisible(boolean visible) {
77                 this.visible = visible;
78         }
79         public String getDefaultValue() {
80                 return defaultValue;
81         }
82         public void setDefaultValue(String defaultValue) {
83                 this.defaultValue = defaultValue;
84         }
85         public String getFieldDefaultSQL() {
86                 return fieldDefaultSQL;
87         }
88         public void setFieldDefaultSQL(String fieldDefaultSQL) {
89                 this.fieldDefaultSQL = fieldDefaultSQL;
90         }
91         public String getValidationType() {
92                 return validationType;
93         }
94         public void setValidationType(String validationType) {
95                 this.validationType = validationType;
96         }
97         public List<IdNameBooleanJSON> getPredefinedValueList() {
98                 return predefinedValueList;
99         }
100         public void setPredefinedValueList(List<IdNameBooleanJSON> predefinedValueList) {
101                 this.predefinedValueList = predefinedValueList;
102         }
103         public String getFieldSQL() {
104                 return fieldSQL;
105         }
106         public void setFieldSQL(String fieldSQL) {
107                 this.fieldSQL = fieldSQL;
108         }
109         
110         
111         
112         
113 }