Package com.google.greaze.definition.webservice

Examples of com.google.greaze.definition.webservice.RequestBodyGsonTypeAdapterFactory


  protected final RequestSpec spec;
  protected final UrlParamsExtractor urlParamsExtractor;

  public RequestReceiver(GsonBuilder gsonBuilder, RequestSpec spec) {
    this.gson = gsonBuilder
        .registerTypeAdapterFactory(new RequestBodyGsonTypeAdapterFactory(spec.getBodySpec()))
        .create();
    this.spec = spec;
    this.urlParamsExtractor = new UrlParamsExtractor(spec.getUrlParamsSpec(), gson);
  }
View Full Code Here

TOP

Related Classes of com.google.greaze.definition.webservice.RequestBodyGsonTypeAdapterFactory

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.