summaryrefslogtreecommitdiffstats
path: root/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/aai/ExternalSystemProxy.java
blob: e5b49d650cc909c24b4fd5f50208bc8d590d562f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/**
 * Copyright 2017 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.onap.aai.esr.externalservice.aai;

import org.glassfish.jersey.client.ClientConfig;
import org.onap.aai.esr.common.MsbConfig;
import org.onap.aai.esr.entity.aai.EsrEmsDetail;
import org.onap.aai.esr.entity.aai.EsrThirdpartySdncDetail;
import org.onap.aai.esr.entity.aai.EsrVnfmDetail;
import org.onap.aai.esr.entity.aai.EsrNfvoDetail;
import org.onap.aai.esr.exception.ExtsysException;
import com.eclipsesource.jaxrs.consumer.ConsumerFactory;

public class ExternalSystemProxy {

    private static IExternalSystem externalSystem, externalSystemV16;
    private static String transactionId = "9999";
    private static String fromAppId = "esr-server";
    private static String authorization = AaiCommon.getAuthenticationCredentials();
    static {
        ClientConfig config = new ClientConfig();
        externalSystem =
                ConsumerFactory.createConsumer(MsbConfig.getExternalSystemAddr(), config, IExternalSystem.class);
        externalSystemV16 =
                ConsumerFactory.createConsumer(MsbConfig.getExternalSystemAddrV16(), config, IExternalSystem.class);
    }
    
    public void registerVnfm(String vnfmId, EsrVnfmDetail esrVnfmDetail) throws ExtsysException {
        ClientConfig config = new ClientConfig(new VnfmRegisterProvider());
        IExternalSystem registerVnfmServiceproxy =
                ConsumerFactory.createConsumer(MsbConfig.getExternalSystemAddr(), config, IExternalSystem.class);
        try {
            registerVnfmServiceproxy.registerVNFM(transactionId, fromAppId, authorization, vnfmId, esrVnfmDetail);
        } catch (Exception e) {
            throw new ExtsysException("PUT VNFM to A&AI failed.", e);
        }
    }

    public String queryVnfmDetail(String vnfmId) throws ExtsysException {
        try {
            return externalSystem.queryVNFMDetail(transactionId, fromAppId, authorization, vnfmId);
        } catch (Exception e) {
            throw new ExtsysException("Query VNFM detail from A&AI failed.", e);
        }
    }

    public String queryVnfmList() throws ExtsysException {
        try {
            return externalSystem.queryVNFMList(transactionId, fromAppId, authorization);
        } catch (Exception e) {
            throw new ExtsysException("Query VNFM list from A&AI failed.", e);
        }
    }

    public void deleteVnfm(String vnfmId, String resourceVersion) throws ExtsysException {
        try {
            externalSystem.deleteVNFM(transactionId, fromAppId, authorization, vnfmId, resourceVersion);
        } catch (Exception e) {
            throw new ExtsysException("Delete VNFM from A&AI failed.", e);
        }
    }

    public void registerNfvo(String nfvoId, EsrNfvoDetail esrNfvoDetail) throws ExtsysException {
        ClientConfig config = new ClientConfig(new NfvoRegisterProvider());
        IExternalSystem registerNfvoServiceproxy =
                ConsumerFactory.createConsumer(MsbConfig.getExternalSystemAddrV16(), config, IExternalSystem.class);
        try {
            registerNfvoServiceproxy.registerNFVO(transactionId, fromAppId, authorization, nfvoId, esrNfvoDetail);
        } catch (Exception e) {
            throw new ExtsysException("PUT NFVO to A&AI failed.", e);
        }
    }

    public String queryNfvoDetail(String nfvoId) throws ExtsysException {
        try {
            return externalSystemV16.queryNFVODetail(transactionId, fromAppId, authorization, nfvoId);
        } catch (Exception e) {
            throw new ExtsysException("Query NFVO detail from A&AI failed.", e);
        }
    }

    public String queryNfvoList() throws ExtsysException {
        try {
            return externalSystemV16.queryNFVOList(transactionId, fromAppId, authorization);
        } catch (Exception e) {
            throw new ExtsysException("Query NFVO list from A&AI failed.", e);
        }
    }

    public void deleteNfvo(String nfvoId, String resourceVersion) throws ExtsysException {
        try {
            externalSystemV16.deleteNFVO(transactionId, fromAppId, authorization, nfvoId, resourceVersion);
        } catch (Exception e) {
            throw new ExtsysException("Delete NFVO from A&AI failed.", e);
        }
    }





    public void registerSdnc(String thirdpartySdncId, EsrThirdpartySdncDetail esrSdncDetail) throws ExtsysException {
        ClientConfig config = new ClientConfig(new ThirdpartySdncRegisterProvider());
        IExternalSystem registerSdncServiceproxy =
                ConsumerFactory.createConsumer(MsbConfig.getExternalSystemAddr(), config, IExternalSystem.class);
        try {
            registerSdncServiceproxy.registerThirdpartySdnc(transactionId, fromAppId, authorization, thirdpartySdncId,
                    esrSdncDetail);
        } catch (Exception e) {
            throw new ExtsysException("PUT thirdparty SDNC to A&AI failed.", e);
        }
    }

    public String queryThirdpartySdncDetail(String thirdpartySdncId) throws ExtsysException {
        try {
            return externalSystem.queryThirdpartySdncDetail(transactionId, fromAppId, authorization,
                    thirdpartySdncId);
        } catch (Exception e) {
            throw new ExtsysException("Query thirdparty SDNC detail from A&AI failed.", e);
        }
    }

    public String querySdncList() throws ExtsysException {
        try {
            return externalSystem.queryThirdpartySdncList(transactionId, fromAppId, authorization);
        } catch (Exception e) {
            throw new ExtsysException("Query thirdparty SDNC list from A&AI failed.", e);
        }
    }

    public void deleteThirdpartySdnc(String sdncId, String resourceVersion) throws ExtsysException {
        try {
            externalSystem.deleteThirdpartySdnc(transactionId, fromAppId, authorization, sdncId, resourceVersion);
        } catch (Exception e) {
            throw new ExtsysException("Delete thirdparty SDNC from A&AI failed.", e);
        }
    }

    public void registerEms(String emsId, EsrEmsDetail emsDetail) throws ExtsysException {
        ClientConfig config = new ClientConfig(new EmsRegisterProvider());
        IExternalSystem registerEmsServiceproxy =
                ConsumerFactory.createConsumer(MsbConfig.getExternalSystemAddr(), config, IExternalSystem.class);
        try {
            registerEmsServiceproxy.registerEMS(transactionId, fromAppId, authorization, emsId, emsDetail);
        } catch (Exception e) {
            throw new ExtsysException("PUT EMS to A&AI failed.", e);
        }
    }

    public String queryEmsDetail(String emsId) throws ExtsysException {
        try {
            return externalSystem.queryEMSDetail(transactionId, fromAppId, authorization, emsId);
        } catch (Exception e) {
            throw new ExtsysException("Query EMS detail from A&AI failed.", e);
        }
    }

    public String queryEmsList() throws ExtsysException {
        try {
            return externalSystem.queryEMSList(transactionId, fromAppId, authorization);
        } catch (Exception e) {
            throw new ExtsysException("Query EMS list from A&AI failed.", e);
        }
    }

    public void deleteEms(String emsId, String resourceVersion) throws ExtsysException {
        try {
            externalSystem.deleteEMS(transactionId, fromAppId, authorization, emsId, resourceVersion);
        } catch (Exception e) {
            throw new ExtsysException("Delete EMS from A&AI failed.", e);
        }
    }
}