Package com.google.greaze.server.dispatcher

Examples of com.google.greaze.server.dispatcher.RequestType


      if (callPath.equals(CallPath.NULL_PATH)) {
        throw new WebServiceSystemException(
            ErrorReason.INVALID_CALLPATH, req.getServletPath());
      }
      String queryName = RequestType.getQueryName(req.getParameterMap());
      RequestType requestType = RequestType.getRequestType(callPath, queryName, resourcePrefix);
      if (LogConfig.INFO) log.info(String.format("%s: %s", requestType, callPath));
      switch (requestType) {
        case RESOURCE_ACCESS:
          injector.getInstance(ResourceDepotDispatcher.class).service(res);
          break;
View Full Code Here

TOP

Related Classes of com.google.greaze.server.dispatcher.RequestType

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.