Package com.scooterframework.web.route

Examples of com.scooterframework.web.route.RequestInfo


     */
  public ActionProperties prepareActionProperties(String requestPath,
      String requestHttpMethod, HttpServletRequest request) {
      ActionProperties aps = super.prepareActionProperties(requestPath, requestHttpMethod, request);
     
        RequestInfo requestInfo = new RequestInfo(requestPath, requestHttpMethod);
        log.debug("  requestInfo: " + requestInfo);
       
        RouteInfo routeInfo = MatchMaker.getInstance().match(requestInfo);
        log.debug("matched route: " + routeInfo);
       
View Full Code Here

TOP

Related Classes of com.scooterframework.web.route.RequestInfo

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.