Realize query EMS detail API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ExternalSystemProxy.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 org.glassfish.jersey.client.ClientConfig;
19 import org.onap.aai.esr.entity.aai.EsrEmsDetail;
20 import org.onap.aai.esr.entity.aai.EsrThirdpartySdncDetail;
21 import org.onap.aai.esr.entity.aai.EsrVnfmDetail;
22
23 import com.eclipsesource.jaxrs.consumer.ConsumerFactory;
24
25 public class ExternalSystemProxy {
26
27   private static IExternalSystem externalSystemproxy;
28
29   private static String transactionId = "9999";
30   private static String fromAppId = "esr-server";
31   private static String authorization = AaiCommon.getAuthenticationCredentials();
32   static {
33     ClientConfig config = new ClientConfig();
34     externalSystemproxy = ConsumerFactory.createConsumer(AaiAdapterConfig.getExternalSystemAddr(),
35         config, IExternalSystem.class);
36   }
37
38   public static void registerVnfm(String vnfmId, EsrVnfmDetail esrVnfmDetail) throws Exception {
39     ClientConfig config = new ClientConfig(new VnfmRegisterProvider());
40     IExternalSystem registerVnfmServiceproxy = ConsumerFactory
41         .createConsumer(AaiAdapterConfig.getExternalSystemAddr(), config, IExternalSystem.class);
42     registerVnfmServiceproxy.registerVNFM(transactionId, fromAppId, authorization, vnfmId,
43         esrVnfmDetail);
44   }
45   
46   public static String queryVnfmDetail(String vnfmId) throws Exception {
47     return externalSystemproxy.queryVNFMDetail(transactionId, fromAppId, authorization, vnfmId);
48   }
49   
50   public static String queryVnfmList() throws Exception {
51     return externalSystemproxy.queryVNFMList(transactionId, fromAppId, authorization);
52   }
53   
54   public static void deleteVnfm(String vnfmId, String resourceVersion) throws Exception {
55     externalSystemproxy.deleteVNFM(transactionId, fromAppId, authorization, vnfmId, resourceVersion);
56   }
57   
58   public static void registerSdnc(String thirdpartySdncId, EsrThirdpartySdncDetail esrSdncDetail) throws Exception {
59     ClientConfig config = new ClientConfig(new ThirdpartySdncRegisterProvider());
60     IExternalSystem registerSdncServiceproxy = ConsumerFactory
61         .createConsumer(AaiAdapterConfig.getExternalSystemAddr(), config, IExternalSystem.class);
62     registerSdncServiceproxy.registerThirdpartySdnc(transactionId, fromAppId, authorization, thirdpartySdncId,
63         esrSdncDetail);
64   }
65   
66   public static String queryThirdpartySdncDetail(String thirdpartySdncId) throws Exception{
67     return externalSystemproxy.queryThirdpartySdncDetail(transactionId, fromAppId, authorization, thirdpartySdncId);
68   }
69   
70   public static String querySdncList() throws Exception {
71     return externalSystemproxy.queryThirdpartySdncList(transactionId, fromAppId, authorization);
72   }
73   
74   public static void deleteThirdpartySdnc(String sdncId, String resourceVersion) throws Exception {
75     externalSystemproxy.deleteThirdpartySdnc(transactionId, fromAppId, authorization, sdncId, resourceVersion);
76   }
77   
78   public static void registerEms(String emsId, EsrEmsDetail emsDetail) throws Exception {
79     ClientConfig config = new ClientConfig(new EmsRegisterProvider());
80     IExternalSystem registerEmsServiceproxy = ConsumerFactory
81         .createConsumer(AaiAdapterConfig.getExternalSystemAddr(), config, IExternalSystem.class);
82     registerEmsServiceproxy.registerEMS(transactionId, fromAppId, authorization, emsId,
83         emsDetail);
84   }
85   
86   public static String queryEmsDetail(String emsId) throws Exception {
87     return externalSystemproxy.queryEMSDetail(transactionId, fromAppId, authorization, emsId);
88   }
89 }