Merge "Supports new aai changes."
[policy/models.git] / models-provider / src / main / java / org / onap / policy / models / provider / impl / DummyPolicyModelsProviderImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.provider.impl;
23
24 import java.util.ArrayList;
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
28
29 import javax.ws.rs.core.Response;
30
31 import org.onap.policy.common.utils.coder.StandardCoder;
32 import org.onap.policy.common.utils.resources.ResourceUtils;
33 import org.onap.policy.models.base.PfModelException;
34 import org.onap.policy.models.base.PfModelRuntimeException;
35 import org.onap.policy.models.pdp.concepts.Pdp;
36 import org.onap.policy.models.pdp.concepts.PdpGroup;
37 import org.onap.policy.models.pdp.concepts.PdpGroupFilter;
38 import org.onap.policy.models.pdp.concepts.PdpStatistics;
39 import org.onap.policy.models.pdp.concepts.PdpSubGroup;
40 import org.onap.policy.models.provider.PolicyModelsProvider;
41 import org.onap.policy.models.provider.PolicyModelsProviderParameters;
42 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
43 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyFilter;
44 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyType;
45 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyTypeFilter;
46 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
47 import org.onap.policy.models.tosca.legacy.concepts.LegacyGuardPolicyInput;
48 import org.onap.policy.models.tosca.legacy.concepts.LegacyGuardPolicyOutput;
49 import org.onap.policy.models.tosca.legacy.concepts.LegacyOperationalPolicy;
50
51 /**
52  * This class provides a dummy implementation of the Policy Models Provider for the ONAP Policy Framework.
53  *
54  * @author Liam Fallon (liam.fallon@est.tech)
55  * @author Chenfei Gao (cgao@research.att.com)
56  */
57 public class DummyPolicyModelsProviderImpl implements PolicyModelsProvider {
58     /**
59      * Constructor that takes the parameters.
60      *
61      * @param parameters the parameters for the provider
62      */
63     public DummyPolicyModelsProviderImpl(final PolicyModelsProviderParameters parameters) {}
64
65     @Override
66     public void init() throws PfModelException {
67         // Not required on the dummy provider
68     }
69
70     @Override
71     public void close() {
72         // Not required on the dummy provider
73     }
74
75     @Override
76     public ToscaServiceTemplate getPolicyTypes(final String name, final String version) throws PfModelException {
77         return getDummyResponse("dummyimpl/DummyToscaPolicyTypeGetResponse.json");
78     }
79
80     @Override
81     public List<ToscaPolicyType> getPolicyTypeList(final String name, final String version) throws PfModelException {
82         return new ArrayList<>();
83     }
84
85     @Override
86     public ToscaServiceTemplate getFilteredPolicyTypes(ToscaPolicyTypeFilter filter) throws PfModelException {
87         return getDummyResponse("dummyimpl/DummyToscaPolicyTypeGetResponse.json");
88     }
89
90     @Override
91     public List<ToscaPolicyType> getFilteredPolicyTypeList(ToscaPolicyTypeFilter filter) {
92         return new ArrayList<>();
93     }
94
95     @Override
96     public ToscaServiceTemplate createPolicyTypes(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
97         return serviceTemplate;
98     }
99
100     @Override
101     public ToscaServiceTemplate updatePolicyTypes(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
102         return serviceTemplate;
103     }
104
105     @Override
106     public ToscaServiceTemplate deletePolicyType(final String name, final String version) throws PfModelException {
107         return getDummyResponse("dummyimpl/DummyToscaPolicyTypeDeleteResponse.json");
108     }
109
110     @Override
111     public ToscaServiceTemplate getPolicies(final String name, final String version) throws PfModelException {
112         return getDummyResponse("dummyimpl/DummyToscaPolicyGetResponse.json");
113     }
114
115     @Override
116     public List<ToscaPolicy> getPolicyList(final String name, final String version) throws PfModelException {
117         return new ArrayList<>();
118     }
119
120     @Override
121     public ToscaServiceTemplate getFilteredPolicies(ToscaPolicyFilter filter) throws PfModelException {
122         return getDummyResponse("dummyimpl/DummyToscaPolicyGetResponse.json");
123     }
124
125     @Override
126     public List<ToscaPolicy> getFilteredPolicyList(ToscaPolicyFilter filter) throws PfModelException {
127         return new ArrayList<>();
128     }
129
130     @Override
131     public ToscaServiceTemplate createPolicies(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
132         return serviceTemplate;
133     }
134
135     @Override
136     public ToscaServiceTemplate updatePolicies(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
137         return serviceTemplate;
138     }
139
140     @Override
141     public ToscaServiceTemplate deletePolicy(final String name, final String version) throws PfModelException {
142         return getDummyResponse("dummyimpl/DummyToscaPolicyDeleteResponse.json");
143     }
144
145     @Override
146
147     public LegacyOperationalPolicy getOperationalPolicy(final String policyId) throws PfModelException {
148         return new LegacyOperationalPolicy();
149     }
150
151     @Override
152     public LegacyOperationalPolicy createOperationalPolicy(final LegacyOperationalPolicy legacyOperationalPolicy)
153             throws PfModelException {
154         return legacyOperationalPolicy;
155     }
156
157     @Override
158     public LegacyOperationalPolicy updateOperationalPolicy(final LegacyOperationalPolicy legacyOperationalPolicy)
159             throws PfModelException {
160         return legacyOperationalPolicy;
161     }
162
163     @Override
164     public LegacyOperationalPolicy deleteOperationalPolicy(final String policyId) throws PfModelException {
165         return new LegacyOperationalPolicy();
166     }
167
168     @Override
169     public Map<String, LegacyGuardPolicyOutput> getGuardPolicy(final String policyId) throws PfModelException {
170         return new HashMap<>();
171     }
172
173     @Override
174     public Map<String, LegacyGuardPolicyOutput> createGuardPolicy(final LegacyGuardPolicyInput legacyGuardPolicy)
175             throws PfModelException {
176         return new HashMap<>();
177     }
178
179     @Override
180     public Map<String, LegacyGuardPolicyOutput> updateGuardPolicy(final LegacyGuardPolicyInput legacyGuardPolicy)
181             throws PfModelException {
182         return new HashMap<>();
183     }
184
185     @Override
186     public Map<String, LegacyGuardPolicyOutput> deleteGuardPolicy(final String policyId) throws PfModelException {
187         return new HashMap<>();
188     }
189
190     @Override
191     public List<PdpGroup> getPdpGroups(final String name) throws PfModelException {
192         return new ArrayList<>();
193     }
194
195     @Override
196     public List<PdpGroup> getFilteredPdpGroups(PdpGroupFilter filter) throws PfModelException {
197         return new ArrayList<>();
198     }
199
200     @Override
201     public List<PdpGroup> createPdpGroups(final List<PdpGroup> pdpGroups) throws PfModelException {
202         return new ArrayList<>();
203     }
204
205     @Override
206     public List<PdpGroup> updatePdpGroups(final List<PdpGroup> pdpGroups) throws PfModelException {
207         return new ArrayList<>();
208     }
209
210     @Override
211     public void updatePdpSubGroup(final String pdpGroupName, final PdpSubGroup pdpSubGroup) throws PfModelException {
212         // Not implemented
213     }
214
215     @Override
216     public void updatePdp(String pdpGroupName, String pdpSubGroup, Pdp pdp) throws PfModelException {
217         // Not implemented
218     }
219
220     @Override
221     public PdpGroup deletePdpGroup(final String name) throws PfModelException {
222         return null;
223     }
224
225     @Override
226     public List<PdpStatistics> getPdpStatistics(final String name) throws PfModelException {
227         return new ArrayList<>();
228     }
229
230     @Override
231     public void updatePdpStatistics(final String pdpGroupName, final String pdpType, final String pdpInstanceId,
232             final PdpStatistics pdppStatistics) throws PfModelException {
233         // Not implemented
234     }
235
236     /**
237      * Return a ToscaServicetemplate dummy response.
238      *
239      * @param fileName the file name containing the dummy response
240      * @return the ToscaServiceTemplate with the dummy response
241      */
242     protected ToscaServiceTemplate getDummyResponse(final String fileName) {
243         StandardCoder standardCoder = new StandardCoder();
244         ToscaServiceTemplate serviceTemplate;
245
246         try {
247             serviceTemplate =
248                     standardCoder.decode(ResourceUtils.getResourceAsString(fileName), ToscaServiceTemplate.class);
249             if (serviceTemplate == null) {
250                 throw new PfModelException(Response.Status.INTERNAL_SERVER_ERROR, "error reading specified file");
251             }
252         } catch (Exception exc) {
253             throw new PfModelRuntimeException(Response.Status.INTERNAL_SERVER_ERROR, "error serializing object", exc);
254         }
255
256         return serviceTemplate;
257     }
258 }