Package com.google.greaze.rest.server

Examples of com.google.greaze.rest.server.RestRequestBaseReceiver


  @RequestScoped
  @SuppressWarnings({"rawtypes", "unchecked"})
  @Provides
  public RestRequestBase getRestRequest(GsonBuilder gsonBuilder, RestCallSpec callSpec,
      CallPath callPath, HttpServletRequest request, ResourceIdFactory<Id<?>> idFactory) {
      RestRequestBaseReceiver requestReceiver =
          new RestRequestBaseReceiver(gsonBuilder, callSpec.getRequestSpec());
      return requestReceiver.receive(request, idFactory.createId(callPath.getResourceId()));
  }
View Full Code Here

TOP

Related Classes of com.google.greaze.rest.server.RestRequestBaseReceiver

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.