2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2019 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.xacml.pdp.application.naming;
 
  25 import java.nio.file.Path;
 
  26 import java.util.Arrays;
 
  27 import java.util.List;
 
  28 import org.onap.policy.common.endpoints.parameters.RestServerParameters;
 
  29 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyTypeIdentifier;
 
  30 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslator;
 
  31 import org.onap.policy.pdp.xacml.application.common.XacmlApplicationException;
 
  32 import org.onap.policy.pdp.xacml.application.common.std.StdMatchableTranslator;
 
  33 import org.onap.policy.pdp.xacml.application.common.std.StdXacmlApplicationServiceProvider;
 
  35 public class NamingPdpApplication extends StdXacmlApplicationServiceProvider {
 
  37     private static final ToscaPolicyTypeIdentifier supportedPolicy = new ToscaPolicyTypeIdentifier(
 
  38             "onap.policies.Naming", "1.0.0");
 
  40     private StdMatchableTranslator translator = new StdMatchableTranslator();
 
  43     public String applicationName() {
 
  48     public List<String> actionDecisionsSupported() {
 
  49         return Arrays.asList("naming");
 
  53     public void initialize(Path pathForData, RestServerParameters policyApiParameters)
 
  54             throws XacmlApplicationException {
 
  56         // Store our API parameters and path for translator so it
 
  57         // can go get Policy Types
 
  59         this.translator.setPathForData(pathForData);
 
  60         this.translator.setApiRestParameters(policyApiParameters);
 
  62         // Let our super class do its thing
 
  64         super.initialize(pathForData, policyApiParameters);
 
  68     public synchronized List<ToscaPolicyTypeIdentifier> supportedPolicyTypes() {
 
  69         return Arrays.asList(supportedPolicy);
 
  73     public boolean canSupportPolicyType(ToscaPolicyTypeIdentifier policyTypeId) {
 
  74         return supportedPolicy.equals(policyTypeId);
 
  78     protected ToscaPolicyTranslator getTranslator(String type) {