aboutsummaryrefslogtreecommitdiffstats
path: root/models-pap
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2019-03-27 22:27:14 +0000
committerliamfallon <liam.fallon@est.tech>2019-03-27 22:27:14 +0000
commit6ccec5265d3431a1ca3265876b3df7bb422d9b62 (patch)
treec639987c73c76c533cddb526bb4d75a48df07ceb /models-pap
parent2141dc0263940c94bf4265c6ca0072d9130a8ead (diff)
Add support for legacy guard policies
Support for legacy guard policies added. Support for translation of all legacy policies to TOSCA format now complete. Fix merge problems with dummy provider implementation. Issue-ID: POLICY-1095 Change-Id: I3dd1775b78d39078a884e1834502b832ff40be18 Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-pap')
-rw-r--r--models-pap/src/main/java/org/onap/policy/models/pap/provider/PapProvider.java86
1 files changed, 0 insertions, 86 deletions
diff --git a/models-pap/src/main/java/org/onap/policy/models/pap/provider/PapProvider.java b/models-pap/src/main/java/org/onap/policy/models/pap/provider/PapProvider.java
deleted file mode 100644
index 4b80bea29..000000000
--- a/models-pap/src/main/java/org/onap/policy/models/pap/provider/PapProvider.java
+++ /dev/null
@@ -1,86 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * Copyright (C) 2019 Nordix Foundation.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * SPDX-License-Identifier: Apache-2.0
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.policy.models.pap.provider;
-
-import lombok.NonNull;
-
-import org.onap.policy.models.base.PfModelException;
-import org.onap.policy.models.dao.PfDao;
-import org.onap.policy.models.pap.concepts.PdpGroups;
-
-/**
- * This class provides the provision of information on PAP concepts in the database to callers.
- *
- * @author Liam Fallon (liam.fallon@est.tech)
- */
-public class PapProvider {
- /**
- * Get PDP groups.
- *
- * @param dao the DAO to use to access the database
- * @param pdpGroupFilter a filter for the get
- * @return the PDP groups found
- * @throws PfModelException on errors getting PDP groups
- */
- public PdpGroups getPdpGroups(@NonNull final PfDao dao, @NonNull final String pdpGroupFilter)
- throws PfModelException {
- return new PdpGroups();
- }
-
- /**
- * Creates PDP groups.
- *
- * @param dao the DAO to use to access the database
- * @param pdpGroups a specification of the PDP groups to create
- * @return the PDP groups created
- * @throws PfModelException on errors creating PDP groups
- */
- public PdpGroups createPdpGroups(@NonNull final PfDao dao, @NonNull final PdpGroups pdpGroups)
- throws PfModelException {
- return new PdpGroups();
- }
-
- /**
- * Updates PDP groups.
- *
- * @param dao the DAO to use to access the database
- * @param pdpGroups a specification of the PDP groups to update
- * @return the PDP groups updated
- * @throws PfModelException on errors updating PDP groups
- */
- public PdpGroups updatePdpGroups(@NonNull final PfDao dao, @NonNull final PdpGroups pdpGroups)
- throws PfModelException {
- return new PdpGroups();
- }
-
- /**
- * Delete PDP groups.
- *
- * @param dao the DAO to use to access the database
- * @param pdpGroupFilter a filter for the get
- * @return the PDP groups deleted
- * @throws PfModelException on errors deleting PDP groups
- */
- public PdpGroups deletePdpGroups(@NonNull final PfDao dao, @NonNull final String pdpGroupFilter)
- throws PfModelException {
- return new PdpGroups();
- }
-}