0626efbd0396ce139c0cf0428225e5740546c9b4
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / client / adapter / vnf / VnfVolumeAdapterClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.so.client.adapter.vnf;
22
23 import org.onap.so.adapters.vnfrest.CreateVolumeGroupRequest;
24 import org.onap.so.adapters.vnfrest.CreateVolumeGroupResponse;
25 import org.onap.so.adapters.vnfrest.DeleteVolumeGroupRequest;
26 import org.onap.so.adapters.vnfrest.DeleteVolumeGroupResponse;
27 import org.onap.so.adapters.vnfrest.QueryVolumeGroupResponse;
28 import org.onap.so.adapters.vnfrest.RollbackVolumeGroupRequest;
29 import org.onap.so.adapters.vnfrest.RollbackVolumeGroupResponse;
30 import org.onap.so.adapters.vnfrest.UpdateVolumeGroupRequest;
31 import org.onap.so.adapters.vnfrest.UpdateVolumeGroupResponse;
32
33 public interface VnfVolumeAdapterClient {
34         CreateVolumeGroupResponse createVNFVolumes(CreateVolumeGroupRequest req) throws VnfAdapterClientException;
35
36         DeleteVolumeGroupResponse deleteVNFVolumes(String aaiVolumeGroupId, DeleteVolumeGroupRequest req)
37                         throws VnfAdapterClientException;
38
39         RollbackVolumeGroupResponse rollbackVNFVolumes(String aaiVolumeGroupId, RollbackVolumeGroupRequest req)
40                         throws VnfAdapterClientException;
41
42         UpdateVolumeGroupResponse updateVNFVolumes(String aaiVolumeGroupId, UpdateVolumeGroupRequest req)
43                         throws VnfAdapterClientException;
44
45         QueryVolumeGroupResponse queryVNFVolumes(String aaiVolumeGroupId, String cloudSiteId, String tenantId,
46                         String volumeGroupStackId, Boolean skipAAI, String requestId, String serviceInstanceId)
47                         throws VnfAdapterClientException;
48 }