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