Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / main / java / org / openecomp / dcae / apod / analytics / common / validation / GenericValidationResponse.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
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  *  ============================LICENSE_END===========================================
19  */
20
21 package org.openecomp.dcae.apod.analytics.common.validation;
22
23 import com.google.common.base.Joiner;
24 import com.google.common.base.Objects;
25
26 import java.util.Collection;
27 import java.util.LinkedHashMap;
28 import java.util.Map;
29 import java.util.Set;
30
31 /**
32  * A generic implementation of Validation Response
33  *
34  * @param <T> Validation Entity Type
35  *
36  * @author Rajiv Singla . Creation Date: 10/24/2016.
37  */
38 public class GenericValidationResponse<T> implements ValidationResponse<T> {
39
40     private LinkedHashMap<String, String> errorMessageMap = new LinkedHashMap<>();
41
42     @Override
43     public boolean hasErrors() {
44         return errorMessageMap.size() != 0;
45     }
46
47     @Override
48     public Set<String> getFieldNamesWithError() {
49         return errorMessageMap.keySet();
50     }
51
52     @Override
53     public Collection<String> getErrorMessages() {
54         return errorMessageMap.values();
55     }
56
57     @Override
58     public Map<String, String> getValidationResultsAsMap() {
59         return errorMessageMap;
60     }
61
62     @Override
63     public String getAllErrorMessage() {
64         return getAllErrorMessage(",");
65     }
66
67     @Override
68     public String getAllErrorMessage(String delimiter) {
69         return Joiner.on(delimiter).join(errorMessageMap.values());
70     }
71
72     @Override
73     public void addErrorMessage(String fieldName, String filedErrorMessage) {
74         errorMessageMap.put(fieldName, filedErrorMessage);
75     }
76
77     @Override
78     public String toString() {
79         return Objects.toStringHelper(this)
80                 .add("hasErrors", hasErrors())
81                 .add("errorMessageMap", errorMessageMap)
82                 .toString();
83     }
84 }