d3b16c21352818d3063c0ee386509b8a7674c1af
[policy/xacml-pdp.git] / applications / common / src / main / java / org / onap / policy / pdp / xacml / application / common / matchable / MatchablePropertyTypeBoolean.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pdp.xacml.application.common.matchable;
24
25 import com.att.research.xacml.api.Identifier;
26 import com.att.research.xacml.api.XACML3;
27 import org.onap.policy.models.tosca.authorative.concepts.ToscaEntrySchema;
28 import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
29 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyConversionException;
30 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslatorUtils;
31
32 public class MatchablePropertyTypeBoolean extends MatchablePropertyTypeBase<Boolean> {
33
34     public MatchablePropertyTypeBoolean(ToscaProperty inProperty) {
35         super(inProperty);
36     }
37
38     public MatchablePropertyTypeBoolean(ToscaEntrySchema toscaSchema) {
39         super(toscaSchema);
40     }
41
42     @Override
43     public Boolean validate(Object value) throws ToscaPolicyConversionException {
44         if (value instanceof Boolean) {
45             return (Boolean) value;
46         }
47         return Boolean.parseBoolean(value.toString());
48     }
49
50     @Override
51     public Object generate(Object value, Identifier attributeId)
52             throws ToscaPolicyConversionException {
53         return ToscaPolicyTranslatorUtils.buildMatchTypeDesignator(
54                 XACML3.ID_FUNCTION_BOOLEAN_EQUAL,
55                 validate(value).toString(),
56                 XACML3.ID_DATATYPE_BOOLEAN,
57                 attributeId,
58                 XACML3.ID_ATTRIBUTE_CATEGORY_RESOURCE);
59     }
60
61 }