41c9d915bd79d4d31baf73592a6adb830d576c63
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / msb / MsbHelper.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.msb;
17
18 import java.net.InetAddress;
19 import java.net.UnknownHostException;
20 import java.util.HashSet;
21 import java.util.Set;
22 import org.onap.aai.esr.exception.ExceptionUtil;
23 import org.onap.msb.sdk.discovery.common.RouteException;
24 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
25 import org.onap.msb.sdk.httpclient.msb.MSBServiceClient;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28 import org.onap.msb.sdk.discovery.entity.Node;
29
30 public class MsbHelper {
31
32     private MSBServiceClient msbClient;
33
34     private static final Logger LOG = LoggerFactory.getLogger(MsbHelper.class);
35     
36     public MsbHelper(MSBServiceClient msbClient) {
37         super();
38         this.msbClient = msbClient;
39     }
40
41
42
43     public void registerMsb() throws RouteException {
44
45
46         MicroServiceInfo msinfo = new MicroServiceInfo();
47
48         msinfo.setServiceName("aai-esr-server");
49         msinfo.setVersion("v1");
50         msinfo.setUrl("/api/aai-esr-server/v1");
51         msinfo.setProtocol("REST");
52         msinfo.setVisualRange("0|1");
53
54         Set<Node> nodes = new HashSet<>();
55         Node node1 = new Node();
56         try {
57             node1.setIp(InetAddress.getLocalHost().getHostAddress());
58         } catch (UnknownHostException e) {
59             LOG.error("Got localhost failed when register service to MSB!", e);
60             throw ExceptionUtil.buildExceptionResponse(e.getMessage());
61         }
62         node1.setPort("9518");
63         nodes.add(node1);
64         msinfo.setNodes(nodes);
65         msbClient.registerMicroServiceInfo(msinfo, false);
66     }
67 }