Examples of DispatchModule


Examples of com.gwtplatform.carstore.server.dispatch.DispatchModule

public class ServerModule extends AbstractModule {
    @Override
    protected void configure() {
        install(new ApiModule());
        install(new DispatchModule());

        bind(PasswordSecurity.class).to(BCryptPasswordSecurity.class).in(Singleton.class);
        bind(DevBootStrapper.class).asEagerSingleton();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.