2  * ============LICENSE_START=======================================================
 
   3  *  Copyright (C) 2019-2020 Nordix Foundation.
 
   4  *  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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  19  * SPDX-License-Identifier: Apache-2.0
 
  20  * ============LICENSE_END=========================================================
 
  23 package org.onap.policy.models.provider.impl;
 
  25 import java.util.ArrayList;
 
  26 import java.util.Collection;
 
  27 import java.util.Date;
 
  28 import java.util.List;
 
  29 import javax.ws.rs.core.Response;
 
  30 import lombok.NonNull;
 
  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.PdpPolicyStatus;
 
  39 import org.onap.policy.models.pdp.concepts.PdpStatistics;
 
  40 import org.onap.policy.models.pdp.concepts.PdpSubGroup;
 
  41 import org.onap.policy.models.provider.PolicyModelsProvider;
 
  42 import org.onap.policy.models.provider.PolicyModelsProviderParameters;
 
  43 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifierOptVersion;
 
  44 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
 
  45 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyFilter;
 
  46 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyType;
 
  47 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyTypeFilter;
 
  48 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
 
  49 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplateFilter;
 
  52  * This class provides a dummy implementation of the Policy Models Provider for the ONAP Policy Framework.
 
  54  * @author Liam Fallon (liam.fallon@est.tech)
 
  55  * @author Chenfei Gao (cgao@research.att.com)
 
  57 public class DummyPolicyModelsProviderImpl implements PolicyModelsProvider {
 
  59      * Constructor that takes the parameters.
 
  61      * @param parameters the parameters for the provider
 
  63     public DummyPolicyModelsProviderImpl(final PolicyModelsProviderParameters parameters) {
 
  64         // Default constructor
 
  68     public void init() throws PfModelException {
 
  69         // Not required on the dummy provider
 
  74         // Not required on the dummy provider
 
  79     public List<ToscaServiceTemplate> getServiceTemplateList(String name, String version) throws PfModelException {
 
  80         return new ArrayList<>();
 
  84     public List<ToscaServiceTemplate> getFilteredServiceTemplateList(@NonNull ToscaServiceTemplateFilter filter)
 
  85             throws PfModelException {
 
  86         return new ArrayList<>();
 
  90     public ToscaServiceTemplate createServiceTemplate(@NonNull ToscaServiceTemplate serviceTemplate)
 
  91             throws PfModelException {
 
  92         return serviceTemplate;
 
  96     public ToscaServiceTemplate updateServiceTemplate(@NonNull ToscaServiceTemplate serviceTemplate)
 
  97             throws PfModelException {
 
  98         return serviceTemplate;
 
 102     public ToscaServiceTemplate deleteServiceTemplate(@NonNull String name, @NonNull String version)
 
 103             throws PfModelException {
 
 104         return getDummyResponse("dummyimpl/DummyToscaServiceTemplateDeleteResponse.json");
 
 108     public ToscaServiceTemplate getPolicyTypes(final String name, final String version) throws PfModelException {
 
 109         return getDummyResponse("dummyimpl/DummyToscaPolicyTypeGetResponse.json");
 
 113     public List<ToscaPolicyType> getPolicyTypeList(final String name, final String version) throws PfModelException {
 
 114         return new ArrayList<>();
 
 118     public ToscaServiceTemplate getFilteredPolicyTypes(ToscaPolicyTypeFilter filter) throws PfModelException {
 
 119         return getDummyResponse("dummyimpl/DummyToscaPolicyTypeGetResponse.json");
 
 123     public List<ToscaPolicyType> getFilteredPolicyTypeList(ToscaPolicyTypeFilter filter) {
 
 124         return new ArrayList<>();
 
 128     public ToscaServiceTemplate createPolicyTypes(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
 
 129         return serviceTemplate;
 
 133     public ToscaServiceTemplate updatePolicyTypes(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
 
 134         return serviceTemplate;
 
 138     public ToscaServiceTemplate deletePolicyType(final String name, final String version) throws PfModelException {
 
 139         return getDummyResponse("dummyimpl/DummyToscaPolicyTypeDeleteResponse.json");
 
 143     public ToscaServiceTemplate getPolicies(final String name, final String version) throws PfModelException {
 
 144         return getDummyResponse("dummyimpl/DummyToscaPolicyGetResponse.json");
 
 148     public List<ToscaPolicy> getPolicyList(final String name, final String version) throws PfModelException {
 
 149         return new ArrayList<>();
 
 153     public ToscaServiceTemplate getFilteredPolicies(ToscaPolicyFilter filter) throws PfModelException {
 
 154         return getDummyResponse("dummyimpl/DummyToscaPolicyGetResponse.json");
 
 158     public List<ToscaPolicy> getFilteredPolicyList(ToscaPolicyFilter filter) throws PfModelException {
 
 159         return new ArrayList<>();
 
 163     public ToscaServiceTemplate createPolicies(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
 
 164         return serviceTemplate;
 
 168     public ToscaServiceTemplate updatePolicies(final ToscaServiceTemplate serviceTemplate) throws PfModelException {
 
 169         return serviceTemplate;
 
 173     public ToscaServiceTemplate deletePolicy(final String name, final String version) throws PfModelException {
 
 174         return getDummyResponse("dummyimpl/DummyToscaPolicyDeleteResponse.json");
 
 178     public List<PdpGroup> getPdpGroups(final String name) throws PfModelException {
 
 179         return new ArrayList<>();
 
 183     public List<PdpGroup> getFilteredPdpGroups(PdpGroupFilter filter) throws PfModelException {
 
 184         return new ArrayList<>();
 
 188     public List<PdpGroup> createPdpGroups(final List<PdpGroup> pdpGroups) throws PfModelException {
 
 189         return new ArrayList<>();
 
 193     public List<PdpGroup> updatePdpGroups(final List<PdpGroup> pdpGroups) throws PfModelException {
 
 194         return new ArrayList<>();
 
 198     public void updatePdpSubGroup(final String pdpGroupName, final PdpSubGroup pdpSubGroup) throws PfModelException {
 
 203     public void updatePdp(String pdpGroupName, String pdpSubGroup, Pdp pdp) throws PfModelException {
 
 208     public PdpGroup deletePdpGroup(final String name) throws PfModelException {
 
 213     public List<PdpStatistics> getPdpStatistics(final String name, final Date timestamp) throws PfModelException {
 
 214         return new ArrayList<>();
 
 218     public List<PdpStatistics> getFilteredPdpStatistics(String name, String pdpGroupName, String pdpSubGroup,
 
 219             Date startTimeStamp, Date endTimeStamp, String sortOrder, int getRecordNum) {
 
 221         return new ArrayList<>();
 
 225     public List<PdpStatistics> createPdpStatistics(final List<PdpStatistics> pdpStatisticsList)
 
 226             throws PfModelException {
 
 228         return new ArrayList<>();
 
 232     public List<PdpStatistics> updatePdpStatistics(final List<PdpStatistics> pdpStatisticsList)
 
 233             throws PfModelException {
 
 235         return new ArrayList<>();
 
 239     public List<PdpStatistics> deletePdpStatistics(final String name, final Date timestamp) {
 
 241         return new ArrayList<>();
 
 245     public List<PdpPolicyStatus> getAllPolicyStatus() throws PfModelException {
 
 247         return new ArrayList<>();
 
 251     public List<PdpPolicyStatus> getAllPolicyStatus(@NonNull ToscaConceptIdentifierOptVersion policy)
 
 252                     throws PfModelException {
 
 254         return new ArrayList<>();
 
 258     public List<PdpPolicyStatus> getGroupPolicyStatus(String groupName) throws PfModelException {
 
 260         return new ArrayList<>();
 
 264     public void cudPolicyStatus(Collection<PdpPolicyStatus> createObjs, Collection<PdpPolicyStatus> updateObjs,
 
 265                     Collection<PdpPolicyStatus> deleteObjs) {
 
 270      * Return a ToscaServicetemplate dummy response.
 
 272      * @param fileName the file name containing the dummy response
 
 273      * @return the ToscaServiceTemplate with the dummy response
 
 275     protected ToscaServiceTemplate getDummyResponse(final String fileName) {
 
 276         StandardCoder standardCoder = new StandardCoder();
 
 277         ToscaServiceTemplate serviceTemplate;
 
 281                     standardCoder.decode(ResourceUtils.getResourceAsString(fileName), ToscaServiceTemplate.class);
 
 282             if (serviceTemplate == null) {
 
 283                 throw new PfModelException(Response.Status.INTERNAL_SERVER_ERROR, "error reading specified file");
 
 285         } catch (Exception exc) {
 
 286             throw new PfModelRuntimeException(Response.Status.INTERNAL_SERVER_ERROR, "error serializing object", exc);
 
 289         return serviceTemplate;