55fea540acd49fd4db73cc85284597597545a315
[policy/xacml-pdp.git] /
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 java.util.Collection;
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.ToscaEntrySchema;
31 import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
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         ToscaEntrySchema 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 Collection) {
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 }