Package org.ice.module.router

Examples of org.ice.module.router.DefaultRouter


  public FrontModule()  {
    requestParser = new HttpRequestParser();
    routers = (ArrayList<IRouter>) Config.get("routers");
    if (routers == null || routers.isEmpty()) {
      routers = new ArrayList<IRouter>();
      routers.add(new DefaultRouter());
    }
  }
View Full Code Here

TOP

Related Classes of org.ice.module.router.DefaultRouter

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.