86d173e6b71b26bb1b9b1f902a643caf3c141bd2
[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         private String message;
39         private String errorMessage;
40         private String errorStackTrace;
41         
42         
43         public String getMessage() {
44                 return message;
45         }
46         public void setMessage(String message) {
47                 this.message = message;
48         }
49         public String getErrorMessage() {
50                 return errorMessage;
51         }
52         public void setErrorMessage(String errorMessage) {
53                 this.errorMessage = errorMessage;
54         }
55         public String getErrorStackTrace() {
56                 return errorStackTrace;
57         }
58         public void setErrorStackTrace(String errorStackTrace) {
59                 this.errorStackTrace = errorStackTrace;
60         }
61         public String getTabId() {
62                 return tabId;
63         }
64         public void setTabId(String tabId) {
65                 this.tabId = tabId;
66         }
67         public String getTabName() {
68                 return tabName;
69         }
70         public void setTabName(String tabName) {
71                 this.tabName = tabName;
72         }
73         
74         
75         public String getFieldId() {
76                 return fieldId;
77         }
78         public void setFieldId(String fieldId) {
79                 this.fieldId = fieldId;
80         }
81         public String getFieldName() {
82                 return fieldName;
83         }
84         public void setFieldName(String fieldName) {
85                 this.fieldName = fieldName;
86         }
87         
88         public String getFieldType() {
89                 return fieldType;
90         }
91         public void setFieldType(String fieldType) {
92                 this.fieldType = fieldType;
93         }
94         public boolean isVisible() {
95                 return visible;
96         }
97         public void setVisible(boolean visible) {
98                 this.visible = visible;
99         }
100         public String getDefaultValue() {
101                 return defaultValue;
102         }
103         public void setDefaultValue(String defaultValue) {
104                 this.defaultValue = defaultValue;
105         }
106         public String getFieldDefaultSQL() {
107                 return fieldDefaultSQL;
108         }
109         public void setFieldDefaultSQL(String fieldDefaultSQL) {
110                 this.fieldDefaultSQL = fieldDefaultSQL;
111         }
112         public String getValidationType() {
113                 return validationType;
114         }
115         public void setValidationType(String validationType) {
116                 this.validationType = validationType;
117         }
118         public List<IdNameBooleanJSON> getPredefinedValueList() {
119                 return predefinedValueList;
120         }
121         public void setPredefinedValueList(List<IdNameBooleanJSON> predefinedValueList) {
122                 this.predefinedValueList = predefinedValueList;
123         }
124         public String getFieldSQL() {
125                 return fieldSQL;
126         }
127         public void setFieldSQL(String fieldSQL) {
128                 this.fieldSQL = fieldSQL;
129         }
130
131 }