Package com.google.walkaround.wave.server.udw

Examples of com.google.walkaround.wave.server.udw.UdwStoreModule


  public static Module getRootModule(final String webinfRoot) {
    return Modules.combine(
        Modules.combine(extraModules),
        new WalkaroundServerModule(),
        new ConvStoreModule(),
        new UdwStoreModule(),
        new AbstractModule() {
          @Override public void configure() {
            bind(String.class).annotatedWith(Names.named("webinf root")).toInstance(webinfRoot);

            // TODO(ohler): Find a way to create these bindings in StoreModuleHelper; but note that
View Full Code Here

TOP

Related Classes of com.google.walkaround.wave.server.udw.UdwStoreModule

Copyright © 2018 www.massapicom. 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.