Package play.core.Router

Examples of play.core.Router.Routes.documentation()


  protected List<Tuple3<String, String, String>> getPlayRoutes() {
    play.api.Application realApp = _app.getWrappedApplication();
    Option<Routes> routes = realApp.routes();
    if (routes.isDefined()) {
      Routes r = routes.get();
      Seq<Tuple3<String, String, String>> docs = r.documentation();
      return scala.collection.JavaConversions.seqAsJavaList(docs);
    }
    return null;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.