Change the API Path
[holmes/engine-management.git] / engine-d / src / main / java / org / onap / holmes / engine / EngineDActiveApp.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.holmes.engine;
17
18 import static jdk.nashorn.internal.runtime.regexp.joni.Config.log;
19
20 import io.dropwizard.setup.Environment;
21 import java.util.HashSet;
22 import java.util.Set;
23 import lombok.extern.slf4j.Slf4j;
24 import org.onap.holmes.common.config.MicroServiceConfig;
25 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
26 import org.onap.holmes.common.exception.CorrelationException;
27 import org.onap.holmes.common.utils.MSBRegisterUtil;
28 import org.onap.holmes.engine.resources.EngineResources;
29 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
30 import org.onap.msb.sdk.discovery.entity.Node;
31
32 @Slf4j
33 public class EngineDActiveApp extends IOCApplication<EngineDAppConfig> {
34
35     public static void main(String[] args) throws Exception {
36         new EngineDActiveApp().run(args);
37     }
38
39     public void run(EngineDAppConfig configuration, Environment environment) throws Exception {
40         super.run(configuration, environment);
41
42         environment.jersey().register(new EngineResources());
43         try {
44             new MSBRegisterUtil().register2Msb(createMicroServiceInfo());
45         } catch (CorrelationException e) {
46             log.warn(e.getMessage(), e);
47         }
48     }
49
50     private MicroServiceInfo createMicroServiceInfo() {
51         MicroServiceInfo msinfo = new MicroServiceInfo();
52         msinfo.setServiceName("holmes-engine-mgmt");
53         msinfo.setVersion("v1");
54         msinfo.setUrl("/api/holmes-engine-mgmt/v1");
55         msinfo.setProtocol("REST");
56         msinfo.setVisualRange("0|1");
57         Set<Node> nodes = new HashSet<>();
58         Node node = new Node();
59         node.setIp(MicroServiceConfig.getServiceIp());
60         node.setPort("9102");
61         nodes.add(node);
62         msinfo.setNodes(nodes);
63         return msinfo;
64     }
65 }