2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 * SPDX-License-Identifier: Apache-2.0
20 * ============LICENSE_END=========================================================
23 package org.onap.policy.pdp.xacml.application.common.matchable;
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;
35 public class MatchablePropertyTypeList extends MatchablePropertyTypeBase<List<MatchablePropertyType<?>>> {
36 MatchableProperty primitiveProperty;
41 * @param toscaProperty ToscaProperty object
43 public MatchablePropertyTypeList(ToscaProperty toscaProperty) {
46 ToscaEntrySchema schema = toscaProperty.getEntrySchema();
47 this.primitiveProperty = MatchablePolicyType.handlePrimitive(schema.getType(), schema);
50 @SuppressWarnings("unchecked")
52 public List<MatchablePropertyType<?>> validate(Object value) throws ToscaPolicyConversionException {
53 if (value instanceof Collection) {
54 return (List<MatchablePropertyType<?>>) value;
56 return Collections.emptyList();
60 public Object generate(Object value, Identifier attributeId)
61 throws ToscaPolicyConversionException {
62 AnyOfType anyOf = null;
63 for (Object val : this.validate(value)) {
65 // Build the AnyOfType
67 anyOf = ToscaPolicyTranslatorUtils.buildAndAppendAllof(anyOf,
68 primitiveProperty.getType().generate(val, attributeId));