Fix the security issue about hibernate and ant.
[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 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;
24
25 public class MsbHelper {
26
27     private MSBServiceClient msbClient;
28
29     public MsbHelper(MSBServiceClient msbClient) {
30         super();
31         this.msbClient = msbClient;
32     }
33
34
35
36     public void registerMsb() throws Exception {
37
38
39         MicroServiceInfo msinfo = new MicroServiceInfo();
40
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");
46
47         Set<Node> nodes = new HashSet<>();
48         Node node1 = new Node();
49         node1.setIp(InetAddress.getLocalHost().getHostAddress());
50         node1.setPort("9518");
51         nodes.add(node1);
52         msinfo.setNodes(nodes);
53         msbClient.registerMicroServiceInfo(msinfo, false);
54     }
55 }