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