Package play.api.mvc

Examples of play.api.mvc.Handler


  public Handler onRouteRequest(RequestHeader request) {
    if (useJaxrs) {
//      if (_app.isDev())
//        JapidFlags.debug("route with Japid router");

      Handler handlerFor = JaxrsRouter.handlerFor(request);
      if (handlerFor == null) {
        handlerFor = super.onRouteRequest(request);
        // if (handlerFor == null && _app.isDev()) {
        // JapidFlags.warn("Japid router could not route the request: "
        // + request.toString());
View Full Code Here

TOP

Related Classes of play.api.mvc.Handler

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.