Package org.one.stone.soup.xapp.ajax.server

Examples of org.one.stone.soup.xapp.ajax.server.AjaxRouter


    {
      String root = xServiceDefinition.getAttributeValueByName("root");
      String page404 = xServiceDefinition.getAttributeValueByName("404-file");
      String indexPage = xServiceDefinition.getAttributeValueByName("index-page");

      router = new AjaxRouter(name,new FileServer(new File(root),new File(page404),indexPage,getMimeTypes()));
    }
    else if(type.equals("http-inversion-router"))
    {
      String root = xServiceDefinition.getAttributeValueByName("root");
      String page404 = xServiceDefinition.getAttributeValueByName("404-file");
View Full Code Here

TOP

Related Classes of org.one.stone.soup.xapp.ajax.server.AjaxRouter

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.