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