regression unit test for getServicesByOwningEntityId
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / AaiClientInterface.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. 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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.aai;
22
23 import com.fasterxml.jackson.databind.JsonNode;
24 import java.net.URI;
25 import java.util.List;
26 import java.util.Map;
27 import javax.ws.rs.core.Response;
28 import org.onap.vid.aai.model.AaiGetOperationalEnvironments.OperationalEnvironmentList;
29 import org.onap.vid.aai.model.AaiGetPnfs.Pnf;
30 import org.onap.vid.aai.model.AaiGetTenatns.GetTenantsResponse;
31 import org.onap.vid.aai.model.ModelVer;
32 import org.onap.vid.aai.model.OwningEntityResponse;
33 import org.onap.vid.aai.model.PortDetailsTranslator;
34 import org.onap.vid.aai.model.Properties;
35 import org.onap.vid.aai.model.ResourceType;
36 import org.onap.vid.model.SubscriberList;
37 import org.onap.vid.services.ProbeInterface;
38 import org.springframework.http.HttpMethod;
39
40 /**
41  * Created by Oren on 7/4/17.
42  */
43 public interface AaiClientInterface extends ProbeInterface {
44
45     boolean isNodeTypeExistsByName(String name, ResourceType type);
46
47     <T> T typedAaiGet(URI path, Class<T> clz);
48
49     <T> T typedAaiRest(URI path, Class<T> clz, String payload, HttpMethod method, boolean propagateExceptions);
50
51     AaiResponse<SubscriberList> getAllSubscribers();
52
53     AaiResponse<Services> getSubscriberData(String subscriberId, boolean omitServiceInstances);
54
55     AaiResponse getServices();
56
57     AaiResponse<OwningEntityResponse> getServicesByOwningEntityId(List<String> owningEntityIds);
58
59     AaiResponse<GetTenantsResponse[]> getTenants(String globalCustomerId, String serviceType);
60
61     AaiResponse<OperationalEnvironmentList> getOperationalEnvironments(String operationalEnvironmentType, String operationalEnvironmentStatus);
62
63     AaiResponse getAllAicZones();
64
65     AaiResponse getNetworkCollectionDetails(String serviceInstanceId);
66
67     AaiResponse getInstanceGroupsByCloudRegion(String cloudOwner, String cloudRegionId, String networkFunction);
68
69     AaiResponse<AaiGetVnfResponse> getVNFData(String globalSubscriberId, String serviceType);
70
71     AaiResponse getVNFData(String globalSubscriberId, String serviceType, String serviceInstanceId);
72
73     AaiResponse getNodeTemplateInstances(String globalCustomerId, String serviceType, String modelVersionId, String modelInvariantId, String cloudRegion);
74
75     Response getVersionByInvariantId(List<String> modelInvariantId);
76
77     ModelVer getLatestVersionByInvariantId(String modelInvariantId);
78
79     AaiResponse getServicesByProjectNames(List<String> projectNames);
80
81     AaiResponse getServiceModelsByDistributionStatus();
82
83     AaiResponse getPNFData(String globalCustomerId, String serviceType, String modelVersionId, String modelInvariantId, String cloudRegion, String equipVendor, String equipModel);
84
85     AaiResponse<Pnf> getSpecificPnf(String pnfId);
86
87     AaiResponse getServiceInstance(String globalCustomerId, String serviceType, String serviceInstanceId);
88
89     AaiResponse getLogicalLink(String link);
90
91     AaiResponse<JsonNode> getCloudRegionAndSourceByPortMirroringConfigurationId(String configurationId);
92
93     List<PortDetailsTranslator.PortDetails> getPortMirroringSourcePorts(String configurationID);
94
95     AaiResponse getInstanceGroupsByVnfInstanceId(String vnfInstanceId);
96
97     Response doAaiGet(String uri, boolean xml);
98
99     String getCloudOwnerByCloudRegionId(String cloudRegionId);
100
101     GetTenantsResponse getHomingDataByVfModule(String vnfInstanceId, String vfModuleId);
102
103     void resetCache(String cacheName);
104
105     Map<String, Properties> getCloudRegionAndTenantByVnfId(String vnfId);
106
107     AaiResponse<AaiGetVnfResponse> getVnfsByParamsForChangeManagement(String subscriberId, String serviceType, String nfRole, String cloudRegion);
108 }