All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.somda.sdc.biceps.guice.DefaultBicepsConfigModule Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 5.1.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy