f029e8af0ddb9643a986dd027a3222ccf323d9b9
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / FieldsValidator.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.openecomp.portalapp.portal.transport;
39
40 import java.util.ArrayList;
41 import java.util.List;
42
43 import javax.servlet.http.HttpServletResponse;
44
45 public class FieldsValidator {
46
47         public Long httpStatusCode = new Long(HttpServletResponse.SC_OK);
48
49         public Long errorCode;
50
51         public class FieldName {
52
53                 public String name;
54
55                 public FieldName(String name) {
56                         this.name = name;
57                 }
58
59                 public String getName() {
60                         return name;
61                 }
62
63                 public void setName(String name) {
64                         this.name = name;
65                 }
66
67         }
68         
69
70         public List<FieldName> fields = new ArrayList<FieldName>();
71
72         public void addProblematicFieldName(String name) {
73                 fields.add(new FieldName(name));
74         }
75
76         public Long getHttpStatusCode() {
77                 return httpStatusCode;
78         }
79
80         public void setHttpStatusCode(Long httpStatusCode) {
81                 this.httpStatusCode = httpStatusCode;
82         }
83
84         public Long getErrorCode() {
85                 return errorCode;
86         }
87
88         public void setErrorCode(Long errorCode) {
89                 this.errorCode = errorCode;
90         }
91
92         public List<FieldName> getFields() {
93                 return fields;
94         }
95
96         public void setFields(List<FieldName> fields) {
97                 this.fields = fields;
98         }
99
100         @Override
101         public String toString() {
102                 return "FieldsValidator [httpStatusCode=" + httpStatusCode + ", errorCode=" + errorCode + ", fields=" + fields
103                                 + "]";
104         }
105
106         @Override
107         public int hashCode() {
108                 final int prime = 31;
109                 int result = 1;
110                 result = prime * result + ((errorCode == null) ? 0 : errorCode.hashCode());
111                 result = prime * result + ((fields == null) ? 0 : fields.hashCode());
112                 result = prime * result + ((httpStatusCode == null) ? 0 : httpStatusCode.hashCode());
113                 return result;
114         }
115
116         @Override
117         public boolean equals(Object obj) {
118                 if (this == obj)
119                         return true;
120                 if (obj == null)
121                         return false;
122                 if (getClass() != obj.getClass())
123                         return false;
124                 FieldsValidator other = (FieldsValidator) obj;
125                 if (errorCode == null) {
126                         if (other.errorCode != null)
127                                 return false;
128                 } else if (!errorCode.equals(other.errorCode))
129                         return false;
130                 if (fields == null) {
131                         if (other.fields != null)
132                                 return false;
133                 } else if (!fields.equals(other.fields))
134                         return false;
135                 if (httpStatusCode == null) {
136                         if (other.httpStatusCode != null)
137                                 return false;
138                 } else if (!httpStatusCode.equals(other.httpStatusCode))
139                         return false;
140                 return true;
141         }
142
143 }