Package com.google.wave.api.data.converter

Examples of com.google.wave.api.data.converter.EventDataConverterModule


  private static final String ACCESS_TOKEN_PATH = "/OAuthGetAccessToken";
  private static final String ALL_TOKENS_PATH = "/OAuthGetAllTokens";

  @Override
  protected void configure() {
    install(new EventDataConverterModule());
    install(new RobotSerializerModule());

    bind(String.class).annotatedWith(Names.named("authorize_token_path")).toInstance(
        AUTHORIZE_TOKEN_PATH);
    bind(String.class).annotatedWith(Names.named("request_token_path")).toInstance(
View Full Code Here


  private static final String REQUEST_TOKEN_PATH = "/OAuthGetRequestToken";
  private static final String ACCESS_TOKEN_PATH = "/OAuthGetAccessToken";

  @Override
  protected void configure() {
    install(new EventDataConverterModule());
    install(new RobotSerializerModule());

    bind(String.class).annotatedWith(Names.named("authorize_token_path")).toInstance(
        AUTHORIZE_TOKEN_PATH);
    bind(String.class).annotatedWith(Names.named("request_token_path")).toInstance(
View Full Code Here

TOP

Related Classes of com.google.wave.api.data.converter.EventDataConverterModule

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.