Removed Dependency: httpclient
[holmes/engine-management.git] / engine-d / src / main / java / org / onap / holmes / engine / EngineDActiveApp.java
1 /**
2  * Copyright 2017-2021 ZTE Corporation.
3  * <p>
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  * <p>
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * <p>
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 io.dropwizard.setup.Environment;
19 import lombok.extern.slf4j.Slf4j;
20 import org.onap.holmes.common.config.MicroServiceConfig;
21 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
22 import org.onap.holmes.common.utils.CommonUtils;
23 import org.onap.holmes.common.utils.transactionid.TransactionIdFilter;
24 import org.onap.holmes.engine.dcae.DcaeConfigurationPolling;
25
26 import javax.servlet.DispatcherType;
27 import java.util.EnumSet;
28 import java.util.concurrent.Executors;
29 import java.util.concurrent.ScheduledExecutorService;
30 import java.util.concurrent.TimeUnit;
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     @Override
40     public void run(EngineDAppConfig configuration, Environment environment) throws Exception {
41         super.run(configuration, environment);
42
43         if (!"1".equals(System.getenv("TESTING"))) {
44             ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
45             service.scheduleAtFixedRate(
46                     new DcaeConfigurationPolling(CommonUtils.getEnv(MicroServiceConfig.HOSTNAME)), 0,
47                     DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
48         }
49
50         environment.servlets().addFilter("logFilter", new TransactionIdFilter()).addMappingForUrlPatterns(EnumSet
51                 .allOf(DispatcherType.class), true, "/*");
52     }
53 }