Fix the esr-server register issue.
[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.util.HashSet;
20 import java.util.Set;
21
22 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
23 import org.onap.msb.sdk.httpclient.msb.MSBServiceClient;
24 import org.onap.msb.sdk.discovery.entity.Node;
25
26 public class MsbHelper {
27
28   private MSBServiceClient msbClient;
29
30   public MsbHelper(MSBServiceClient msbClient) {
31     super();
32     this.msbClient = msbClient;
33   }
34
35
36
37   public void registerMsb() throws Exception {
38
39
40     MicroServiceInfo msinfo = new MicroServiceInfo();
41
42     msinfo.setServiceName("aai-esr-server");
43     msinfo.setVersion("v1");
44     msinfo.setUrl("/api/aai-esr-server/v1");
45     msinfo.setProtocol("REST");
46     msinfo.setVisualRange("0|1");
47     
48     Set<Node> nodes = new HashSet<>();
49     Node node1 = new Node();
50     node1.setIp(InetAddress.getLocalHost().getHostAddress());
51     node1.setPort("9518");
52     nodes.add(node1);
53     msinfo.setNodes(nodes);
54     msbClient.registerMicroServiceInfo(msinfo, false);
55   }
56 }