Upgrade sonar plugin
[vid.git] / vid-app-common / src / main / java / org / openecomp / vid / mso / MsoInterface.java
1 package org.openecomp.vid.mso;
2
3 import org.openecomp.vid.mso.rest.Request;
4 import org.openecomp.vid.mso.rest.RequestDetails;
5 import org.openecomp.vid.mso.rest.Task;
6
7 import java.util.List;
8
9 /**
10  * Created by pickjonathan on 21/06/2017.
11  */
12 public interface MsoInterface {
13
14     /**
15      * This function will post MSO service with information about how to instantiate the requested service
16      * @param requestDetails The details about the service as they come from the web.
17      * @return MsoResponseWrapper containing information about the service instantiation
18      * --> success : see JSON at resources folder mso_create_instance_response.
19      * --> failure : would return 200 with failure data.
20      * @throws Exception
21      */
22     MsoResponseWrapper createSvcInstance(RequestDetails requestDetails, String endpoint) throws Exception;
23
24     /**
25      * will create a virtual network function using MSO service.
26      * @param requestDetails - information about the vnf to create
27      * @return - the response body recived from MSO
28      * @throws Exception
29      */
30     MsoResponseWrapper createVnf(RequestDetails requestDetails, String endpoint) throws Exception;
31
32     MsoResponseWrapper createNwInstance(RequestDetails requestDetails, String endpoint) throws Exception;
33     /**
34      *
35      * @param requestDetails
36      * @param path
37      * @return
38      * @throws Exception
39      */
40     MsoResponseWrapper createVolumeGroupInstance(RequestDetails requestDetails, String path) throws Exception;
41
42     /**
43      *
44      * @param requestDetails
45      * @return
46      * @throws Exception
47      */
48     MsoResponseWrapper createVfModuleInstance(RequestDetails requestDetails, String endpoint) throws Exception;
49
50     MsoResponseWrapper deleteSvcInstance(RequestDetails requestDetails, String endpoint) throws Exception;
51
52     MsoResponseWrapper deleteVnf(RequestDetails requestDetails, String endpoint) throws Exception;
53
54     MsoResponseWrapper deleteVfModule(RequestDetails requestDetails, String endpoint) throws Exception;
55
56     MsoResponseWrapper deleteVolumeGroupInstance(RequestDetails requestDetails, String endpoint) throws Exception;
57
58     MsoResponseWrapper deleteNwInstance(RequestDetails requestDetails, String endpoint) throws Exception;
59
60     void getOrchestrationRequest(String t, String sourceId, String endpoint, RestObject restObject) throws Exception;
61
62     MsoResponseWrapper getOrchestrationRequestsForDashboard(String t , String sourceId , String endpoint , RestObject restObject) throws Exception;
63
64     MsoResponseWrapper getManualTasksByRequestId(String t , String sourceId , String endpoint , RestObject restObject) throws Exception;
65
66     MsoResponseWrapper completeManualTask(RequestDetails requestDetails, String t, String sourceId, String endpoint, RestObject restObject) throws Exception;
67
68         MsoResponseWrapper updateVnf(org.openecomp.vid.changeManagement.RequestDetails requestDetails, String vnf_endpoint)  throws Exception;
69
70         MsoResponseWrapper replaceVnf(org.openecomp.vid.changeManagement.RequestDetails requestDetails, String vnf_endpoint)  throws Exception;
71
72
73     void activateServiceInstance(RequestDetails requestDetails, String t, String sourceId, String endpoint, RestObject<String> restObject) throws Exception;
74
75 }