org.somda.sdc.biceps.guice.DefaultBicepsConfigModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biceps Show documentation
Show all versions of biceps Show documentation
SDCri is a set of Java libraries that implements a network communication framework conforming
with the IEEE 11073 SDC specifications. This project implements the functionality described in
IEEE 11073-10207.
package org.somda.sdc.biceps.guice;
import org.somda.sdc.biceps.common.CommonConfig;
import org.somda.sdc.common.guice.AbstractConfigurationModule;
/**
* Guice module that determines default values for the BICEPS package configuration.
*/
public class DefaultBicepsConfigModule extends AbstractConfigurationModule {
@Override
public void defaultConfigure() {
configureCommon();
}
private void configureCommon() {
bind(CommonConfig.COPY_MDIB_INPUT,
Boolean.class,
true);
bind(CommonConfig.COPY_MDIB_OUTPUT,
Boolean.class,
true);
}
}