b7ddc3b89d60167c418a5339519c0442cf146e02
[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 boolean groupFormField;
52         private String lastUpdatedFieldId;
53
54         private String defaultValue;
55         private String fieldDefaultSQL;
56         private String fieldSQL;
57         private String validationType;
58         private List<IdNameBooleanJSON> predefinedValueList;
59         private String message;
60         private String errorMessage;
61         private String errorStackTrace;
62         private Integer orderSeq;
63         
64         public String getMessage() {
65                 return message;
66         }
67         public void setMessage(String message) {
68                 this.message = message;
69         }
70         public String getErrorMessage() {
71                 return errorMessage;
72         }
73         public void setErrorMessage(String errorMessage) {
74                 this.errorMessage = errorMessage;
75         }
76         public String getErrorStackTrace() {
77                 return errorStackTrace;
78         }
79         public void setErrorStackTrace(String errorStackTrace) {
80                 this.errorStackTrace = errorStackTrace;
81         }
82         public String getTabId() {
83                 return tabId;
84         }
85         public void setTabId(String tabId) {
86                 this.tabId = tabId;
87         }
88         public String getTabName() {
89                 return tabName;
90         }
91         public void setTabName(String tabName) {
92                 this.tabName = tabName;
93         }
94         
95         
96         public String getFieldId() {
97                 return fieldId;
98         }
99         public void setFieldId(String fieldId) {
100                 this.fieldId = fieldId;
101         }
102         public String getFieldName() {
103                 return fieldName;
104         }
105         public void setFieldName(String fieldName) {
106                 this.fieldName = fieldName;
107         }
108         
109         public String getFieldType() {
110                 return fieldType;
111         }
112         public void setFieldType(String fieldType) {
113                 this.fieldType = fieldType;
114         }
115         public boolean isVisible() {
116                 return visible;
117         }
118         public void setVisible(boolean visible) {
119                 this.visible = visible;
120         }
121         public String getDefaultValue() {
122                 return defaultValue;
123         }
124         public void setDefaultValue(String defaultValue) {
125                 this.defaultValue = defaultValue;
126         }
127         public String getFieldDefaultSQL() {
128                 return fieldDefaultSQL;
129         }
130         public void setFieldDefaultSQL(String fieldDefaultSQL) {
131                 this.fieldDefaultSQL = fieldDefaultSQL;
132         }
133         public String getValidationType() {
134                 return validationType;
135         }
136         public void setValidationType(String validationType) {
137                 this.validationType = validationType;
138         }
139         public List<IdNameBooleanJSON> getPredefinedValueList() {
140                 return predefinedValueList;
141         }
142         public void setPredefinedValueList(List<IdNameBooleanJSON> predefinedValueList) {
143                 this.predefinedValueList = predefinedValueList;
144         }
145         public String getFieldSQL() {
146                 return fieldSQL;
147         }
148         public void setFieldSQL(String fieldSQL) {
149                 this.fieldSQL = fieldSQL;
150         }
151         public boolean isGroupFormField() {
152                 return groupFormField;
153         }
154         public void setGroupFormField(boolean groupFormField) {
155                 this.groupFormField = groupFormField;
156         }
157         public Integer getOrderSeq() {
158                 return orderSeq;
159         }
160         public void setOrderSeq(Integer orderSeq) {
161                 this.orderSeq = orderSeq;
162         }
163         
164         
165         public String getLastUpdatedFieldId() {
166                 return lastUpdatedFieldId;
167         }
168         public void setLastUpdatedFieldId(String lastUpdatedFieldId) {
169                 this.lastUpdatedFieldId = lastUpdatedFieldId;
170         }
171         
172
173 }