a043bb85b6dcdc58c55be1af0aa329b7d9cb0a55
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.adapters.vnfmadapter.extclients.aai;
22
23 import java.util.List;
24 import org.onap.aai.domain.yang.EsrSystemInfoList;
25 import org.onap.aai.domain.yang.EsrVnfm;
26 import org.onap.aai.domain.yang.EsrVnfmList;
27 import org.onap.aai.domain.yang.GenericVnf;
28 import org.onap.aai.domain.yang.Tenant;
29 import org.onap.aai.domain.yang.Vserver;
30
31 /**
32  * Provides methods for invoking REST calls to AAI.
33  */
34 public interface AaiServiceProvider {
35
36     /**
37      * Invoke a get request for a generic VNF.
38      *
39      * @param vnfId the VNF id
40      * @return the generic VNF
41      */
42     GenericVnf invokeGetGenericVnf(final String vnfId);
43
44     /**
45      * Invoke a query for a generic VNF with the given selfLink
46      *
47      * @param selfLink the selfLink
48      * @return the matching generic vnfs
49      */
50     List<GenericVnf> invokeQueryGenericVnf(final String selfLink);
51
52     /**
53      * Invoke a GET request for the VNFMs.
54      *
55      * @return the VNFMs
56      */
57     EsrVnfmList invokeGetVnfms();
58
59     /**
60      * Invoke a GET request for the esr system info list for a VNFM.
61      *
62      * @return the esr system info list for the VNFM
63      */
64     EsrSystemInfoList invokeGetVnfmEsrSystemInfoList(final String vnfmId);
65
66     /**
67      * Invoke a GET request for the a VNFM.
68      *
69      * @param vnfmId the ID of the VNFM
70      * @return the VNFM
71      */
72     EsrVnfm invokeGetVnfm(final String vnfmId);
73
74     /**
75      * Invoke a PUT request for a generic vnf.
76      *
77      * @param vnf the generic vnf
78      * @return
79      */
80     void invokePutGenericVnf(GenericVnf vnf);
81
82     /**
83      * Invoke a PUT request for a vserver.
84      *
85      * @param cloudOwner the cloud owner
86      * @param cloudRegion the cloud region
87      * @param tenantId the ID of the tenant
88      * @param vserver the vserver
89      * @return
90      */
91     void invokePutVserver(final String cloudOwner, final String cloudRegion, final String tenantId,
92             final Vserver vserver);
93
94     /**
95      * Invoke a GET request for the a tenant.
96      *
97      * @param cloudOwner the cloud owner
98      * @param cloudRegion the cloud region
99      * @param tenantId the ID of the tenant
100      * @return the tenant
101      */
102     Tenant invokeGetTenant(final String cloudOwner, final String cloudRegion, final String tenantId);
103
104     /**
105      * Invoke a GET request for the esr system info list for a cloud region.
106      *
107      * @param cloudOwner the cloud owner
108      * @param cloudRegion the cloud region
109      * @return the esr system info list for the VNFM
110      */
111     EsrSystemInfoList invokeGetCloudRegionEsrSystemInfoList(final String cloudOwner, final String cloudRegion);
112
113 }