f9d8ee084a65f86fd262356330cf272b76621724
[transportpce.git] / tests / honeynode221 / honeynode-plugin-impl / src / main / java / io / fd / honeycomb / transportpce / device / configuration / PmConfigurationModule.java
1 /*
2  * Copyright (c) 2018 Orange and/or its affiliates.
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 io.fd.honeycomb.transportpce.device.configuration;
17
18 import com.google.inject.AbstractModule;
19
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 import net.jmob.guice.conf.core.ConfigurationModule;
24
25 /**
26  * @author Martial COULIBALY ( martial.coulibaly@gfi.com ) on behalf of Orange
27  */
28 public final class PmConfigurationModule extends AbstractModule {
29
30     private static final Logger LOG = LoggerFactory.getLogger(PmConfigurationModule.class);
31
32     @Override
33     protected void configure() {
34         LOG.info("Initializing Pm Readers Module");
35         install(ConfigurationModule.create());
36         requestInjection(PmConfiguration.class);
37     }
38
39 }