52f4ae11cd7625fdad21793ddc54d19697d12147
[policy/xacml-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2020 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  * SPDX-License-Identifier: Apache-2.0
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.policy.pdp.xacml.application.common.matchable;
25
26 import com.att.research.xacml.api.Identifier;
27 import java.util.Collections;
28 import java.util.List;
29 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AnyOfType;
30 import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
31 import org.onap.policy.models.tosca.authorative.concepts.ToscaSchemaDefinition;
32 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyConversionException;
33 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslatorUtils;
34
35 public class MatchablePropertyTypeList extends MatchablePropertyTypeBase<List<MatchablePropertyType<?>>> {
36     MatchableProperty primitiveProperty;
37
38     /**
39      * constructor.
40      *
41      * @param toscaProperty ToscaProperty object
42      */
43     public MatchablePropertyTypeList(ToscaProperty toscaProperty) {
44         super(toscaProperty);
45
46         ToscaSchemaDefinition schema = toscaProperty.getEntrySchema();
47         this.primitiveProperty = MatchablePolicyType.handlePrimitive(schema.getType(), schema);
48     }
49
50     @SuppressWarnings("unchecked")
51     @Override
52     public List<MatchablePropertyType<?>> validate(Object value) throws ToscaPolicyConversionException {
53         if (value instanceof List) {
54             return (List<MatchablePropertyType<?>>) value;
55         }
56         return Collections.emptyList();
57     }
58
59     @Override
60     public Object generate(Object value, Identifier attributeId)
61             throws ToscaPolicyConversionException {
62         AnyOfType anyOf = null;
63         for (Object val : this.validate(value)) {
64             //
65             // Build the AnyOfType
66             //
67             anyOf = ToscaPolicyTranslatorUtils.buildAndAppendAllof(anyOf,
68                     primitiveProperty.getType().generate(val, attributeId));
69         }
70         return anyOf;
71     }
72
73 }