2c57d4ea96d422b6a9d6ddc42316b6fe1998b78c
[policy/apex-pdp.git] / context / context-management / src / main / java / org / onap / policy / apex / context / impl / schema / java / JavaSchemaHelperParameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.context.impl.schema.java;
22
23 import java.util.LinkedHashMap;
24 import java.util.Map;
25 import java.util.Map.Entry;
26 import org.onap.policy.apex.context.parameters.SchemaHelperParameters;
27 import org.onap.policy.common.parameters.GroupValidationResult;
28
29 /**
30  * The Schema helper parameter class for the Java schema helper is an empty parameter class that acts as a placeholder.
31  *
32  * @author Liam Fallon (liam.fallon@ericsson.com)
33  */
34 public class JavaSchemaHelperParameters extends SchemaHelperParameters {
35     // Map of specific type adapters for this event
36     private Map<String, JavaSchemaHelperJsonAdapterParameters> jsonAdapters = new LinkedHashMap<>();
37
38     /**
39      * Constructor for Java schema helper parameters.
40      */
41     public JavaSchemaHelperParameters() {
42         this.setName("Java");
43         this.setSchemaHelperPluginClass(JavaSchemaHelper.class.getName());
44     }
45
46     /**
47      * Get the JSON adapters.
48      *
49      * @return the JSON adapters
50      */
51     public Map<String, JavaSchemaHelperJsonAdapterParameters> getJsonAdapters() {
52         return jsonAdapters;
53     }
54
55     /**
56      * Set JSON adapters for the schema helper.
57      *
58      * @param jsonAdapters the JSON adapters
59      */
60     public void setJsonAdapters(Map<String, JavaSchemaHelperJsonAdapterParameters> jsonAdapters) {
61         this.jsonAdapters = jsonAdapters;
62     }
63
64     /**
65      * {@inheritDoc}.
66      */
67     @Override
68     public GroupValidationResult validate() {
69         final GroupValidationResult result = new GroupValidationResult(this);
70
71         for (Entry<String, JavaSchemaHelperJsonAdapterParameters> typeAdapterEntry : jsonAdapters.entrySet()) {
72             result.setResult("jsonAdapters", typeAdapterEntry.getKey(), typeAdapterEntry.getValue().validate());
73         }
74         return result;
75     }
76
77 }