5731a7b2fa4ccd56b11e57930aa954390e832bfb
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / parameters / XacmlPdpParameterGroup.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
4  * Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.pdpx.main.parameters;
23
24 import lombok.Getter;
25 import lombok.Setter;
26 import org.onap.policy.common.endpoints.parameters.RestServerParameters;
27 import org.onap.policy.common.endpoints.parameters.TopicParameterGroup;
28 import org.onap.policy.common.parameters.GroupValidationResult;
29 import org.onap.policy.common.parameters.ParameterGroup;
30 import org.onap.policy.common.parameters.ValidationStatus;
31 import org.onap.policy.common.utils.validation.ParameterValidationUtils;
32
33 /**
34  * Class to hold all parameters needed for xacml pdp component.
35  *
36  */
37 @Getter
38 public class XacmlPdpParameterGroup implements ParameterGroup {
39     private static final String PARAM_REST_SERVER = "restServerParameters";
40     private static final String PARAM_POLICY_API = "policyApiParameters";
41     private static final String PARAM_TOPIC_PARAMETER_GROUP = "topicParameterGroup";
42     private static final String PARAM_APPLICATION_PATH = "applicationPath";
43
44     @Setter
45     private String name;
46
47     private RestServerParameters restServerParameters;
48     private RestServerParameters policyApiParameters;
49     private TopicParameterGroup topicParameterGroup;
50     private String applicationPath;
51
52     /**
53      * Create the xacml pdp parameter group.
54      *
55      * @param name the parameter group name
56      */
57     public XacmlPdpParameterGroup(final String name, final RestServerParameters restServerParameters,
58                     final RestServerParameters policyApiParameters, final TopicParameterGroup topicParameterGroup,
59                     final String applicationPath) {
60         this.name = name;
61         this.restServerParameters = restServerParameters;
62         this.policyApiParameters = policyApiParameters;
63         this.topicParameterGroup = topicParameterGroup;
64         this.applicationPath = applicationPath;
65     }
66
67     /**
68      * Validate the parameter group.
69      *
70      * @return the result of the validation
71      */
72     @Override
73     public GroupValidationResult validate() {
74         final GroupValidationResult validationResult = new GroupValidationResult(this);
75         if (!ParameterValidationUtils.validateStringParameter(name)) {
76             validationResult.setResult("name", ValidationStatus.INVALID, "must be a non-blank string");
77         }
78         if (restServerParameters == null) {
79             validationResult.setResult(PARAM_REST_SERVER, ValidationStatus.INVALID,
80                     "must have restServerParameters to configure xacml pdp rest server");
81         } else {
82             validationResult.setResult(PARAM_REST_SERVER, restServerParameters.validate());
83         }
84         if (policyApiParameters == null) {
85             validationResult.setResult(PARAM_POLICY_API, ValidationStatus.INVALID,
86                     "must have policyApiParameters to configure xacml pdp rest server");
87         } else {
88             // set the name - this only really matters for validation messages
89             policyApiParameters.setName(PARAM_POLICY_API);
90             validationResult.setResult(PARAM_POLICY_API, policyApiParameters.validate());
91         }
92         if (topicParameterGroup == null) {
93             validationResult.setResult(PARAM_TOPIC_PARAMETER_GROUP, ValidationStatus.INVALID,
94                     "must have topicParameterGroup to configure xacml pdp topic sink and source");
95         } else {
96             validationResult.setResult(PARAM_TOPIC_PARAMETER_GROUP, topicParameterGroup.validate());
97         }
98         //
99         // Validate the application path directory
100         //
101         if (applicationPath == null || applicationPath.isEmpty()) {
102             validationResult.setResult(PARAM_APPLICATION_PATH, ValidationStatus.INVALID,
103                     "must have application path for applications to store policies and data.");
104         }
105         return validationResult;
106     }
107 }