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

com.freedomotic.bus.InjectorBus Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.freedomotic.bus;

import com.google.inject.AbstractModule;
import com.google.inject.Singleton;


/**
 *
 * @author enrico
 */
public class InjectorBus extends AbstractModule {


    @Override
    protected void configure() {
        
        bind(BusService.class).to(BusServiceImpl.class).in(Singleton.class);
        
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy