Add spring repository and service layer for tosca node templates
[policy/api.git] / main / src / main / java / org / onap / policy / api / main / rest / provider / PolicyProvider.java
diff --git a/main/src/main/java/org/onap/policy/api/main/rest/provider/PolicyProvider.java b/main/src/main/java/org/onap/policy/api/main/rest/provider/PolicyProvider.java
deleted file mode 100644 (file)
index 1e5ed47..0000000
+++ /dev/null
@@ -1,165 +0,0 @@
-/*-\r
- * ============LICENSE_START=======================================================\r
- * ONAP Policy API\r
- * ================================================================================\r
- * Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.\r
- * Modifications Copyright (C) 2020-2021 Nordix Foundation.\r
- * Modifications Copyright (C) 2022 Bell Canada. All rights reserved.\r
- * ================================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *      http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- *\r
- * SPDX-License-Identifier: Apache-2.0\r
- * ============LICENSE_END=========================================================\r
- */\r
-\r
-package org.onap.policy.api.main.rest.provider;\r
-\r
-import org.onap.policy.api.main.rest.PolicyFetchMode;\r
-import org.onap.policy.models.base.PfModelException;\r
-import org.onap.policy.models.provider.PolicyModelsProvider;\r
-import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;\r
-import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;\r
-import org.onap.policy.models.tosca.authorative.concepts.ToscaTypedEntityFilter;\r
-import org.springframework.beans.factory.annotation.Autowired;\r
-import org.springframework.stereotype.Service;\r
-\r
-/**\r
- * Class to provide all kinds of policy operations.\r
- *\r
- * @author Chenfei Gao (cgao@research.att.com)\r
- */\r
-@Service\r
-public class PolicyProvider extends CommonModelProvider {\r
-\r
-    /**\r
-     * Default constructor.\r
-     */\r
-    @Autowired\r
-    public PolicyProvider(PolicyModelsProvider modelsProvider) throws PfModelException {\r
-        super(modelsProvider);\r
-    }\r
-\r
-    /**\r
-     * Retrieves a list of policies matching specified ID and version of both policy type and policy.\r
-     *\r
-     * @param policyTypeId the ID of policy type\r
-     * @param policyTypeVersion the version of policy type\r
-     * @param policyId the ID of policy\r
-     * @param policyVersion the version of policy\r
-     * @param mode the fetch mode for policies\r
-     *\r
-     * @return the ToscaServiceTemplate object\r
-     *\r
-     * @throws PfModelException the PfModel parsing exception\r
-     */\r
-    public ToscaServiceTemplate fetchPolicies(final String policyTypeId, final String policyTypeVersion,\r
-            final String policyId, final String policyVersion, final PolicyFetchMode mode) throws PfModelException {\r
-\r
-        return getFilteredPolicies(policyTypeId, policyTypeVersion, policyId, policyVersion, mode);\r
-    }\r
-\r
-    /**\r
-     * Retrieves a list of policies with the latest versions that match specified policy type id and version.\r
-     *\r
-     * @param policyTypeId the ID of policy type\r
-     * @param policyTypeVersion the version of policy type\r
-     * @param policyId the ID of the policy\r
-     * @param mode the fetch mode for policies\r
-     * @return the ToscaServiceTemplate object\r
-     *\r
-     * @throws PfModelException the PfModel parsing exception\r
-     */\r
-    public ToscaServiceTemplate fetchLatestPolicies(final String policyTypeId, final String policyTypeVersion,\r
-            final String policyId, final PolicyFetchMode mode) throws PfModelException {\r
-\r
-        return getFilteredPolicies(policyTypeId, policyTypeVersion, policyId, ToscaTypedEntityFilter.LATEST_VERSION,\r
-                mode);\r
-    }\r
-\r
-    /**\r
-     * Creates one or more new policies for the same policy type ID and version.\r
-     *\r
-     * @param policyTypeId the ID of policy type\r
-     * @param policyTypeVersion the version of policy type\r
-     * @param body the entity body of polic(ies)\r
-     *\r
-     * @return the ToscaServiceTemplate object\r
-     *\r
-     * @throws PfModelException the PfModel parsing exception\r
-     */\r
-    public ToscaServiceTemplate createPolicy(String policyTypeId, String policyTypeVersion, ToscaServiceTemplate body)\r
-            throws PfModelException {\r
-\r
-        return modelsProvider.createPolicies(body);\r
-    }\r
-\r
-    /**\r
-     * Creates one or more new policies.\r
-     *\r
-     * @param body the entity body of policy\r
-     *\r
-     * @return the ToscaServiceTemplate object\r
-     *\r
-     * @throws PfModelException the PfModel parsing exception\r
-     */\r
-    public ToscaServiceTemplate createPolicies(ToscaServiceTemplate body) throws PfModelException {\r
-        return modelsProvider.createPolicies(body);\r
-    }\r
-\r
-    /**\r
-     * Deletes the policy matching specified ID and version of both policy type and policy.\r
-     *\r
-     * @param policyTypeId the ID of policy type\r
-     * @param policyTypeVersion the version of policy type\r
-     * @param policyId the ID of policy\r
-     * @param policyVersion the version of policy\r
-     *\r
-     * @return the ToscaServiceTemplate object\r
-     *\r
-     * @throws PfModelException the PfModel parsing exception\r
-     */\r
-    public ToscaServiceTemplate deletePolicy(String policyTypeId, String policyTypeVersion, String policyId,\r
-            String policyVersion) throws PfModelException {\r
-\r
-        return modelsProvider.deletePolicy(policyId, policyVersion);\r
-    }\r
-\r
-    /**\r
-     * Retrieves the specified version of the policy.\r
-     *\r
-     * @param policyTypeName the name of the policy type\r
-     * @param policyTypeVersion the version of the policy type\r
-     * @param policyName the name of the policy\r
-     * @param policyVersion the version of the policy\r
-     * @param mode the fetch mode for policies\r
-     *\r
-     * @return the TOSCA service template containing the specified version of the policy\r
-     *\r
-     * @throws PfModelException the PfModel parsing exception\r
-     */\r
-    private ToscaServiceTemplate getFilteredPolicies(final String policyTypeName, final String policyTypeVersion,\r
-            final String policyName, final String policyVersion, final PolicyFetchMode mode) throws PfModelException {\r
-\r
-        ToscaTypedEntityFilter<ToscaPolicy> policyFilter = ToscaTypedEntityFilter.<ToscaPolicy>builder()\r
-                .name(policyName).version(policyVersion).type(policyTypeName).typeVersion(policyTypeVersion).build();\r
-\r
-        ToscaServiceTemplate serviceTemplate = modelsProvider.getFilteredPolicies(policyFilter);\r
-\r
-        if (mode == null || PolicyFetchMode.BARE.equals(mode)) {\r
-            serviceTemplate.setPolicyTypes(null);\r
-            serviceTemplate.setDataTypes(null);\r
-        }\r
-\r
-        return serviceTemplate;\r
-    }\r
-}
\ No newline at end of file