bc39006f8687a341d13282f57d8d73f840771c1d
[portal/sdk.git] /
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal SDK
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 package org.onap.portalsdk.analytics.model.definition.wizard;
39
40 import java.util.List;
41
42 public class FormEditJSON implements WizardJSON {
43
44         private String tabId;
45         private String tabName;
46         
47         private String fieldId;
48         private String fieldName;
49         private String fieldType;
50         private boolean visible;
51         private String defaultValue;
52         private String fieldDefaultSQL;
53         private String fieldSQL;
54         private String validationType;
55         private List<IdNameBooleanJSON> predefinedValueList;
56         private String message;
57         private String errorMessage;
58         private String errorStackTrace;
59         
60         
61         public String getMessage() {
62                 return message;
63         }
64         public void setMessage(String message) {
65                 this.message = message;
66         }
67         public String getErrorMessage() {
68                 return errorMessage;
69         }
70         public void setErrorMessage(String errorMessage) {
71                 this.errorMessage = errorMessage;
72         }
73         public String getErrorStackTrace() {
74                 return errorStackTrace;
75         }
76         public void setErrorStackTrace(String errorStackTrace) {
77                 this.errorStackTrace = errorStackTrace;
78         }
79         public String getTabId() {
80                 return tabId;
81         }
82         public void setTabId(String tabId) {
83                 this.tabId = tabId;
84         }
85         public String getTabName() {
86                 return tabName;
87         }
88         public void setTabName(String tabName) {
89                 this.tabName = tabName;
90         }
91         
92         
93         public String getFieldId() {
94                 return fieldId;
95         }
96         public void setFieldId(String fieldId) {
97                 this.fieldId = fieldId;
98         }
99         public String getFieldName() {
100                 return fieldName;
101         }
102         public void setFieldName(String fieldName) {
103                 this.fieldName = fieldName;
104         }
105         
106         public String getFieldType() {
107                 return fieldType;
108         }
109         public void setFieldType(String fieldType) {
110                 this.fieldType = fieldType;
111         }
112         public boolean isVisible() {
113                 return visible;
114         }
115         public void setVisible(boolean visible) {
116                 this.visible = visible;
117         }
118         public String getDefaultValue() {
119                 return defaultValue;
120         }
121         public void setDefaultValue(String defaultValue) {
122                 this.defaultValue = defaultValue;
123         }
124         public String getFieldDefaultSQL() {
125                 return fieldDefaultSQL;
126         }
127         public void setFieldDefaultSQL(String fieldDefaultSQL) {
128                 this.fieldDefaultSQL = fieldDefaultSQL;
129         }
130         public String getValidationType() {
131                 return validationType;
132         }
133         public void setValidationType(String validationType) {
134                 this.validationType = validationType;
135         }
136         public List<IdNameBooleanJSON> getPredefinedValueList() {
137                 return predefinedValueList;
138         }
139         public void setPredefinedValueList(List<IdNameBooleanJSON> predefinedValueList) {
140                 this.predefinedValueList = predefinedValueList;
141         }
142         public String getFieldSQL() {
143                 return fieldSQL;
144         }
145         public void setFieldSQL(String fieldSQL) {
146                 this.fieldSQL = fieldSQL;
147         }
148
149 }