Remove unused imports in models
[policy/models.git] / models-provider / src / test / java / org / onap / policy / models / provider / impl / DummyBadProviderImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2022 Nordix Foundation.
4  *  Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
5  *  Modifications Copyright (C) 2020, 2022 Bell Canada. 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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.models.provider.impl;
24
25 import java.util.Collection;
26 import java.util.Collections;
27 import java.util.List;
28 import java.util.Map;
29 import javax.ws.rs.core.Response;
30 import lombok.NonNull;
31 import org.onap.policy.models.base.PfModelException;
32 import org.onap.policy.models.base.PfModelRuntimeException;
33 import org.onap.policy.models.pdp.concepts.Pdp;
34 import org.onap.policy.models.pdp.concepts.PdpGroup;
35 import org.onap.policy.models.pdp.concepts.PdpGroupFilter;
36 import org.onap.policy.models.pdp.concepts.PdpPolicyStatus;
37 import org.onap.policy.models.pdp.concepts.PdpSubGroup;
38 import org.onap.policy.models.provider.PolicyModelsProvider;
39 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifierOptVersion;
40 import org.onap.policy.models.tosca.authorative.concepts.ToscaEntityFilter;
41 import org.onap.policy.models.tosca.authorative.concepts.ToscaEntityKey;
42 import org.onap.policy.models.tosca.authorative.concepts.ToscaNodeTemplate;
43 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
44 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyType;
45 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
46 import org.onap.policy.models.tosca.authorative.concepts.ToscaTypedEntityFilter;
47
48 /**
49  * Dummy implementation of {@link PolicyModelsProvider} with bad constructor.
50  *
51  * @author Liam Fallon (liam.fallon@est.tech)
52  */
53 public class DummyBadProviderImpl implements PolicyModelsProvider {
54     public DummyBadProviderImpl() {
55         throw new PfModelRuntimeException(Response.Status.BAD_REQUEST, "Bad Request");
56     }
57
58     @Override
59     public void close() throws PfModelException {
60         // do nothing
61     }
62
63     @Override
64     public void init() throws PfModelException {
65         // do nothing
66     }
67
68     @Override
69     public List<ToscaServiceTemplate> getFilteredServiceTemplateList(
70             @NonNull ToscaEntityFilter<ToscaServiceTemplate> filter) throws PfModelException {
71         return null;
72     }
73
74     @Override
75     public ToscaServiceTemplate createServiceTemplate(@NonNull ToscaServiceTemplate serviceTemplate)
76             throws PfModelException {
77         return null;
78     }
79
80     @Override
81     public ToscaServiceTemplate updateServiceTemplate(@NonNull ToscaServiceTemplate serviceTemplate)
82             throws PfModelException {
83         return null;
84     }
85
86     @Override
87     public ToscaServiceTemplate deleteServiceTemplate(@NonNull String name, @NonNull String version)
88             throws PfModelException {
89         return null;
90     }
91
92     @Override
93     public ToscaServiceTemplate getPolicyTypes(final String name, final String version) throws PfModelException {
94         return null;
95     }
96
97     @Override
98     public ToscaServiceTemplate createPolicyTypes(@NonNull ToscaServiceTemplate serviceTemplate)
99             throws PfModelException {
100         return null;
101     }
102
103     @Override
104     public ToscaServiceTemplate updatePolicyTypes(@NonNull ToscaServiceTemplate serviceTemplate)
105             throws PfModelException {
106         return null;
107     }
108
109     @Override
110     public ToscaServiceTemplate deletePolicyType(final String name, final String version) throws PfModelException {
111         return null;
112     }
113
114     @Override
115     public ToscaServiceTemplate getPolicies(final String name, final String version) throws PfModelException {
116         return null;
117     }
118
119     @Override
120     public ToscaServiceTemplate createPolicies(@NonNull ToscaServiceTemplate serviceTemplate) throws PfModelException {
121         return null;
122     }
123
124     @Override
125     public ToscaServiceTemplate updatePolicies(@NonNull ToscaServiceTemplate serviceTemplate) throws PfModelException {
126         return null;
127     }
128
129     @Override
130     public ToscaServiceTemplate deletePolicy(final String name, final String version) throws PfModelException {
131         return null;
132     }
133
134     @Override
135     public ToscaServiceTemplate createToscaNodeTemplates(@NonNull ToscaServiceTemplate serviceTemplate)
136         throws PfModelException {
137         return null;
138     }
139
140     @Override
141     public ToscaServiceTemplate updateToscaNodeTemplates(@NonNull ToscaServiceTemplate serviceTemplate)
142         throws PfModelRuntimeException, PfModelException {
143         return null;
144     }
145
146     @Override
147     public ToscaServiceTemplate deleteToscaNodeTemplate(@NonNull String name, @NonNull String version)
148         throws PfModelException {
149         return null;
150     }
151
152     @Override
153     public List<Map<ToscaEntityKey, Map<String, Object>>> getNodeTemplateMetadataSets(@NonNull String name,
154                                                                                       @NonNull String version)
155         throws PfModelException {
156         return null;
157     }
158
159     @Override
160     public List<ToscaNodeTemplate> getToscaNodeTemplate(final String name, final String version)
161         throws PfModelException {
162         return null;
163     }
164
165     @Override
166     public List<PdpGroup> getPdpGroups(String name) throws PfModelException {
167         return Collections.emptyList();
168     }
169
170     @Override
171     public List<PdpGroup> createPdpGroups(@NonNull List<PdpGroup> pdpGroups) throws PfModelException {
172         return Collections.emptyList();
173     }
174
175     @Override
176     public List<PdpGroup> updatePdpGroups(@NonNull List<PdpGroup> pdpGroups) throws PfModelException {
177         return Collections.emptyList();
178     }
179
180     @Override
181     public void updatePdp(@NonNull String pdpGroupName, @NonNull String pdpSubGroup, @NonNull Pdp pdp)
182             throws PfModelException {
183         // do nothing
184     }
185
186     @Override
187     public PdpGroup deletePdpGroup(@NonNull String name) throws PfModelException {
188         return null;
189     }
190
191     @Override
192     public List<ToscaPolicyType> getPolicyTypeList(String name, String version) throws PfModelException {
193         return Collections.emptyList();
194     }
195
196     @Override
197     public ToscaServiceTemplate getFilteredPolicyTypes(@NonNull ToscaEntityFilter<ToscaPolicyType> filter)
198             throws PfModelException {
199         return null;
200     }
201
202     @Override
203     public List<ToscaPolicyType> getFilteredPolicyTypeList(@NonNull ToscaEntityFilter<ToscaPolicyType> filter)
204             throws PfModelException {
205         return Collections.emptyList();
206     }
207
208     @Override
209     public List<ToscaPolicy> getPolicyList(String name, String version) throws PfModelException {
210         return Collections.emptyList();
211     }
212
213     @Override
214     public ToscaServiceTemplate getFilteredPolicies(@NonNull ToscaTypedEntityFilter<ToscaPolicy> filter)
215             throws PfModelException {
216         return null;
217     }
218
219     @Override
220     public List<ToscaPolicy> getFilteredPolicyList(@NonNull ToscaTypedEntityFilter<ToscaPolicy> filter)
221             throws PfModelException {
222         return Collections.emptyList();
223     }
224
225     @Override
226     public List<PdpGroup> getFilteredPdpGroups(@NonNull PdpGroupFilter filter) throws PfModelException {
227         return Collections.emptyList();
228     }
229
230     @Override
231     public void updatePdpSubGroup(@NonNull String pdpGroupName, @NonNull PdpSubGroup pdpSubGroup)
232             throws PfModelException {
233         // do nothing
234     }
235
236     @Override
237     public List<PdpPolicyStatus> getAllPolicyStatus() throws PfModelException {
238         // Not implemented
239         return null;
240     }
241
242     @Override
243     public List<PdpPolicyStatus> getAllPolicyStatus(@NonNull ToscaConceptIdentifierOptVersion policy)
244             throws PfModelException {
245         // Not implemented
246         return null;
247     }
248
249     @Override
250     public List<PdpPolicyStatus> getGroupPolicyStatus(@NonNull String groupName) throws PfModelException {
251         // Not implemented
252         return null;
253     }
254
255     @Override
256     public void cudPolicyStatus(Collection<PdpPolicyStatus> createObjs, Collection<PdpPolicyStatus> updateObjs,
257             Collection<PdpPolicyStatus> deleteObjs) {
258         // Not implemented
259     }
260
261     @Override
262     public List<ToscaServiceTemplate> getServiceTemplateList(String name, String version) throws PfModelException {
263         // Not implemented
264         return null;
265     }
266 }