Add DAO Enabled Tosca Model
[policy/models.git] / models-provider / src / main / java / org / onap / policy / models / provider / impl / PolicyModelsProviderImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.provider.impl;
22
23 import lombok.NonNull;
24
25 import org.onap.policy.models.base.PfConceptKey;
26 import org.onap.policy.models.base.PfModelException;
27 import org.onap.policy.models.base.PfReferenceKey;
28 import org.onap.policy.models.provider.PolicyModelsProvider;
29 import org.onap.policy.models.tosca.concepts.ToscaServiceTemplate;
30
31 /**
32  * This class provides the implementaiton of the defalut Policy Models Provider for the ONAP Policy Framework.
33  *
34  * @author Liam Fallon (liam.fallon@est.tech)
35  */
36 public class PolicyModelsProviderImpl implements PolicyModelsProvider {
37
38     @Override
39     public ToscaServiceTemplate getPolicyTypes(@NonNull PfConceptKey policyTypeKey) throws PfModelException {
40         return null;
41     }
42
43     @Override
44     public ToscaServiceTemplate createPolicyTypes(@NonNull ToscaServiceTemplate serviceTemplate)
45             throws PfModelException {
46         return null;
47     }
48
49     @Override
50     public ToscaServiceTemplate deletePolicyTypes(@NonNull PfConceptKey policyTypeKey) throws PfModelException {
51         return null;
52     }
53
54     @Override
55     public ToscaServiceTemplate getPolicies(@NonNull PfReferenceKey policyKey) throws PfModelException {
56         return null;
57     }
58
59     @Override
60     public ToscaServiceTemplate createPolicies(@NonNull ToscaServiceTemplate serviceTemplate) throws PfModelException {
61         return null;
62     }
63
64     @Override
65     public ToscaServiceTemplate updatePolicies(@NonNull ToscaServiceTemplate serviceTemplate) throws PfModelException {
66         return null;
67     }
68
69     @Override
70     public ToscaServiceTemplate deletePolicies(@NonNull PfReferenceKey policyKey) throws PfModelException {
71         return null;
72     }
73
74     @Override
75     public ToscaServiceTemplate updatePolicyTypes(@NonNull ToscaServiceTemplate serviceTemplate)
76             throws PfModelException {
77         return null;
78     }
79
80     @Override
81     public Object getPdpGroups(@NonNull Object somePdpGroupFilter) throws PfModelException {
82         return null;
83     }
84
85     @Override
86     public Object createPdpGroups(@NonNull Object somePdpGroupSpecification) throws PfModelException {
87         return null;
88     }
89
90     @Override
91     public Object updatePdpGroups(@NonNull Object somePdpGroupSpecification) throws PfModelException {
92         return null;
93     }
94
95     @Override
96     public void deletePdpGroups(@NonNull Object somePdpGroupFilter) throws PfModelException {
97     }
98 }