Change the usage of Exception in external system.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ICloudRegion.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.externalservice.aai;
17
18 import javax.ws.rs.Consumes;
19 import javax.ws.rs.DELETE;
20 import javax.ws.rs.GET;
21 import javax.ws.rs.HeaderParam;
22 import javax.ws.rs.PUT;
23 import javax.ws.rs.Path;
24 import javax.ws.rs.PathParam;
25 import javax.ws.rs.Produces;
26 import javax.ws.rs.QueryParam;
27 import javax.ws.rs.core.MediaType;
28
29 import org.onap.aai.esr.entity.aai.CloudRegionDetail;
30 import org.onap.aai.esr.exception.ExtsysException;
31
32
33 @Path("/cloud-regions")
34 public interface ICloudRegion {
35
36   @PUT
37   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}")
38   @Consumes(MediaType.APPLICATION_JSON)
39   @Produces(MediaType.APPLICATION_JSON)
40   public void registerVIMService(@HeaderParam("X-TransactionId") String transactionId,
41       @HeaderParam("X-FromAppId") String fromApp,
42       @HeaderParam("Authorization") String authorization,
43       @PathParam("cloud_owner") String cloud_owner,
44       @PathParam("cloud_region_id") String cloud_region_id, CloudRegionDetail cloudRegion) throws ExtsysException;
45
46   @GET
47   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}?depth=all")
48   @Consumes(MediaType.APPLICATION_JSON)
49   @Produces(MediaType.APPLICATION_JSON)
50   public String queryVIMDetail(@HeaderParam("X-TransactionId") String transactionId,
51       @HeaderParam("X-FromAppId") String fromApp,
52       @HeaderParam("Authorization") String authorization,
53       @PathParam("cloud_owner") String cloud_owner,
54       @PathParam("cloud_region_id") String cloud_region_id) throws ExtsysException;
55   
56   @GET
57   @Consumes(MediaType.APPLICATION_JSON)
58   @Produces(MediaType.APPLICATION_JSON)
59   public String queryVIMList(@HeaderParam("X-TransactionId") String transactionId,
60       @HeaderParam("X-FromAppId") String fromApp,
61       @HeaderParam("Authorization") String authorization) throws ExtsysException;
62
63   @DELETE
64   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}")
65   @Consumes(MediaType.APPLICATION_JSON)
66   @Produces(MediaType.APPLICATION_JSON)
67   public void deleteVim(@HeaderParam("X-TransactionId") String transactionId,
68       @HeaderParam("X-FromAppId") String fromApp,
69       @HeaderParam("Authorization") String authorization,
70       @PathParam("cloud_owner") String cloud_owner,
71       @PathParam("cloud_region_id") String cloud_region_id,
72       @QueryParam("resource-version") String resourceVersion) throws ExtsysException;
73 }