Package ca.simplegames.micro

Examples of ca.simplegames.micro.Route


  private void load(SiteContext site, List<Map<String, Object>> routeMaps) {
    if (!CollectionUtils.isEmpty(routeMaps)) {
      for (Map<String, Object> routeMap : routeMaps) {
        try {
          String routePath = (String) routeMap.get("route");
          Route route = new RouteWrapper(routePath, routeMap);
          add(route);
        } catch (Exception e) {
          log.error("cannot load the following router for: " + routeMaps);
          e.printStackTrace();
        }
View Full Code Here

TOP

Related Classes of ca.simplegames.micro.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.