Package com.scooterframework.web.route

Examples of com.scooterframework.web.route.Route


     * @param routeName     route name
     * @return route
     */
    public static Route route(String routeName) {
        //validate the routeName
        Route route = MatchMaker.getInstance().getRoute(routeName);
        if (route == null) {
            throw new IllegalArgumentException("\"" + routeName + "\"" +
                        " is not defined as a route.");
        }
        return route;
View Full Code Here

TOP

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

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.