Roll versions
[ccsdk/sli/adaptors.git] / aai-service / lighty / src / main / java / org / onap / ccsdk / sli / adaptors / aai / AAIClientLighty.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *             reserved.
7  * Modifications Copyright © 2018 IBM.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22 /**
23  * @author Rich Tabedzki
24  *
25  */
26 package org.onap.ccsdk.sli.adaptors.aai;
27
28 import java.io.IOException;
29 import java.net.MalformedURLException;
30 import java.net.URL;
31 import java.util.Map;
32 import org.onap.aai.inventory.v16.GenericVnf;
33 import org.onap.aai.inventory.v16.PhysicalLink;
34 import org.onap.aai.inventory.v16.SearchResults;
35 import org.onap.aai.inventory.v16.Vserver;
36 import org.onap.ccsdk.sli.adaptors.aai.data.notify.NotifyEvent;
37 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
38 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
39 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
40 import org.onap.ccsdk.sli.core.sli.SvcLogicResource;
41
42 /**
43  * THIS CLASS IS A COPY OF {@link AAIClient} WITH REMOVED OSGi DEPENDENCIES
44  */
45 public interface AAIClientLighty extends SvcLogicResource, SvcLogicJavaPlugin {
46
47     public SearchResults requestServiceInstanceURL(String svcInstanceId) throws AAIServiceException;
48
49     // VServers
50     public Vserver requestVServerData(String tenantId, String vserverId, String cloudOwner, String cloudRegionId) throws AAIServiceException;
51
52     public URL requestVserverURLNodeQuery(String vserverName) throws AAIServiceException;
53     public String getTenantIdFromVserverUrl(URL url);
54     public String getCloudOwnerFromVserverUrl(URL url);
55     public String getCloudRegionFromVserverUrl(URL url);
56     public String getVServerIdFromVserverUrl(URL url, String tennantId);
57     public Vserver requestVServerDataByURL(URL url) throws AAIServiceException;
58
59
60
61     // ----------------- Release 1510 ----------------------
62     //    // GenericVNF
63     public GenericVnf requestGenericVnfData(String vnfId) throws AAIServiceException;
64     public boolean postGenericVnfData(String vnfId, GenericVnf request) throws AAIServiceException;
65
66     // Physical Link
67     public PhysicalLink requestPhysicalLinkData(String vnfId) throws AAIServiceException;
68     public boolean postPhysicalLinkData(String vnfId, PhysicalLink request) throws AAIServiceException;
69     public boolean deletePhysicalLinkData(String vnfId, String resourceVersion) throws AAIServiceException;
70
71     // UBB Notify
72     public boolean sendNotify(NotifyEvent event, String serviceInstanceId, String pathCode) throws AAIServiceException;
73
74     // Node Query - 1602
75     public SearchResults requestNodeQuery(String type, String entityIdentifier, String entityName) throws AAIServiceException;
76     public String requestDataByURL(URL url) throws AAIServiceException;
77     public GenericVnf requestGenericVnfeNodeQuery(String vnfName) throws AAIServiceException;
78
79     public QueryStatus backup(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException;
80     public QueryStatus restore(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException;
81
82     public void logKeyError(String keys);
83
84     public QueryStatus processResponseData(String rv, String resource, AAIRequestLighty request, String prefix,
85             SvcLogicContext ctx, Map<String, String> nameValues, String modifier) throws IOException, AAIServiceException ;
86     public String getPathTemplateForResource(String resoourceName, String join, SvcLogicContext ctx) throws MalformedURLException;
87     public boolean isDeprecatedFormat(String resource, Map<String, String> nameValues);
88
89     String query(AAIRequestLighty request) throws AAIServiceException;
90     String save(AAIRequestLighty request) throws AAIServiceException;
91     boolean delete(AAIRequestLighty request, String resourceVersion) throws AAIServiceException;
92     boolean update(AAIRequestLighty request, String resourceVersion) throws AAIServiceException;
93
94 }