7b19ad473635ed9cca368e0b62a65321fe978d7c
[policy/xacml-pdp.git] / applications / common / src / main / java / org / onap / policy / pdp / xacml / application / common / matchable / MatchablePropertyTypeList.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 java.util.Collections;
27 import java.util.List;
28 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AnyOfType;
29 import org.onap.policy.models.tosca.authorative.concepts.ToscaEntrySchema;
30 import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
31 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyConversionException;
32 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslatorUtils;
33
34 public class MatchablePropertyTypeList extends MatchablePropertyTypeBase<List<MatchablePropertyType<?>>> {
35     MatchableProperty primitiveProperty;
36
37     /**
38      * constructor.
39      *
40      * @param toscaProperty ToscaProperty object
41      */
42     public MatchablePropertyTypeList(ToscaProperty toscaProperty) {
43         super(toscaProperty);
44
45         ToscaEntrySchema schema = toscaProperty.getEntrySchema();
46         this.primitiveProperty = MatchablePolicyType.handlePrimitive(schema.getType(), schema);
47     }
48
49     @SuppressWarnings("unchecked")
50     @Override
51     public List<MatchablePropertyType<?>> validate(Object value) throws ToscaPolicyConversionException {
52         if (value instanceof List) {
53             return (List<MatchablePropertyType<?>>) value;
54         }
55         return Collections.emptyList();
56     }
57
58     @Override
59     public Object generate(Object value, Identifier attributeId)
60             throws ToscaPolicyConversionException {
61         AnyOfType anyOf = null;
62         for (Object val : this.validate(value)) {
63             //
64             // Build the AnyOfType
65             //
66             anyOf = ToscaPolicyTranslatorUtils.buildAndAppendAllof(anyOf,
67                     primitiveProperty.getType().generate(val, attributeId));
68         }
69         return anyOf;
70     }
71
72 }