b257d79f32008ee24da9d44fbb9e7b136a72c276
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / IEsrVimRest.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
17 package org.onap.aai.esr.externalservice.aai;
18
19 import javax.ws.rs.Consumes;
20 import javax.ws.rs.GET;
21 import javax.ws.rs.PUT;
22 import javax.ws.rs.Path;
23 import javax.ws.rs.PathParam;
24 import javax.ws.rs.Produces;
25 import javax.ws.rs.core.MediaType;
26
27 import org.glassfish.jersey.client.ClientResponse;
28 import org.onap.aai.esr.entity.aai.CloudRegion;
29
30 import retrofit2.http.Header;
31 import retrofit2.http.Headers;
32
33
34 @Path("/aai/v11/cloud-infrastructure/cloud-regions")
35 public interface IEsrVimRest {
36
37   @Headers({  
38     "X-TransactionId: 9999",
39     "Accept: application/json",  
40     "X-FromAppId: aai-esr"
41   })
42   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}")
43   @PUT
44   @Consumes(MediaType.APPLICATION_JSON)
45
46   public ClientResponse registerVIMServce(@Header("Authorization") String authorization, @PathParam("cloud_owner") String cloud_owner,
47       CloudRegion entity);
48
49   @Headers({  
50     "X-TransactionId: 9999",
51     "Accept: application/json",  
52     "X-FromAppId: aai-esr"
53   })
54   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}?depth=all")
55   @GET
56   @Produces(MediaType.APPLICATION_JSON)
57   public ClientResponse queryVIMDetail(@Header("Authorization") String authorization, @PathParam("cloud_owner") String cloud_owner,
58       @PathParam("cloud_region_id") String cloud_region_id);
59   
60   @Headers({  
61     "X-TransactionId: 9999",
62     "Accept: application/json",  
63     "X-FromAppId: aai-esr"
64   })
65   @Path("/")
66   @GET
67   @Produces(MediaType.APPLICATION_JSON)
68   public ClientResponse queryVIMList(@Header("Authorization") String authorization);
69   
70
71   @Headers({  
72     "X-TransactionId: 9999",
73     "Accept: application/json",  
74     "X-FromAppId: aai-esr"
75   })
76   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}/esr-system-info/{esr_system_info_id}")
77   @GET
78   public ClientResponse delVIMAuthInfo(@Header("Authorization") String authorization, @PathParam("cloud_owner") String cloud_owner,
79       @PathParam("cloud_region_id") String cloud_region_id, @PathParam("esr_system_info_id") String esr_system_info_id);
80   
81 }