fee83b2f8ef9c508d4614d572c32cc5b4b55f44f
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / FieldsValidator.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
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.portalapp.portal.transport;
21
22 import java.util.ArrayList;
23 import java.util.List;
24
25 import javax.servlet.http.HttpServletResponse;
26
27 public class FieldsValidator {
28
29         public Long httpStatusCode = new Long(HttpServletResponse.SC_OK);
30
31         public Long errorCode;
32
33         public class FieldName {
34
35                 public String name;
36
37                 public FieldName(String name) {
38                         this.name = name;
39                 }
40
41                 public String getName() {
42                         return name;
43                 }
44
45                 public void setName(String name) {
46                         this.name = name;
47                 }
48
49         }
50         
51
52         public List<FieldName> fields = new ArrayList<FieldName>();
53
54         public void addProblematicFieldName(String name) {
55                 fields.add(new FieldName(name));
56         }
57
58         public Long getHttpStatusCode() {
59                 return httpStatusCode;
60         }
61
62         public void setHttpStatusCode(Long httpStatusCode) {
63                 this.httpStatusCode = httpStatusCode;
64         }
65
66         public Long getErrorCode() {
67                 return errorCode;
68         }
69
70         public void setErrorCode(Long errorCode) {
71                 this.errorCode = errorCode;
72         }
73
74         public List<FieldName> getFields() {
75                 return fields;
76         }
77
78         public void setFields(List<FieldName> fields) {
79                 this.fields = fields;
80         }
81
82         @Override
83         public String toString() {
84                 return "FieldsValidator [httpStatusCode=" + httpStatusCode + ", errorCode=" + errorCode + ", fields=" + fields
85                                 + "]";
86         }
87
88         @Override
89         public int hashCode() {
90                 final int prime = 31;
91                 int result = 1;
92                 result = prime * result + ((errorCode == null) ? 0 : errorCode.hashCode());
93                 result = prime * result + ((fields == null) ? 0 : fields.hashCode());
94                 result = prime * result + ((httpStatusCode == null) ? 0 : httpStatusCode.hashCode());
95                 return result;
96         }
97
98         @Override
99         public boolean equals(Object obj) {
100                 if (this == obj)
101                         return true;
102                 if (obj == null)
103                         return false;
104                 if (getClass() != obj.getClass())
105                         return false;
106                 FieldsValidator other = (FieldsValidator) obj;
107                 if (errorCode == null) {
108                         if (other.errorCode != null)
109                                 return false;
110                 } else if (!errorCode.equals(other.errorCode))
111                         return false;
112                 if (fields == null) {
113                         if (other.fields != null)
114                                 return false;
115                 } else if (!fields.equals(other.fields))
116                         return false;
117                 if (httpStatusCode == null) {
118                         if (other.httpStatusCode != null)
119                                 return false;
120                 } else if (!httpStatusCode.equals(other.httpStatusCode))
121                         return false;
122                 return true;
123         }
124
125 }