2 * Copyright 2017 ZTE Corporation.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onap.aai.esr.externalservice.msb;
18 import java.net.InetAddress;
19 import java.util.HashSet;
21 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
22 import org.onap.msb.sdk.httpclient.msb.MSBServiceClient;
23 import org.onap.msb.sdk.discovery.entity.Node;
25 public class MsbHelper {
27 private MSBServiceClient msbClient;
29 public MsbHelper(MSBServiceClient msbClient) {
31 this.msbClient = msbClient;
36 public void registerMsb() throws Exception {
39 MicroServiceInfo msinfo = new MicroServiceInfo();
41 msinfo.setServiceName("aai-esr-server");
42 msinfo.setVersion("v1");
43 msinfo.setUrl("/api/aai-esr-server/v1");
44 msinfo.setProtocol("REST");
45 msinfo.setVisualRange("0|1");
47 Set<Node> nodes = new HashSet<>();
48 Node node1 = new Node();
49 node1.setIp(InetAddress.getLocalHost().getHostAddress());
50 node1.setPort("9518");
52 msinfo.setNodes(nodes);
53 msbClient.registerMicroServiceInfo(msinfo, false);