Package org.one.stone.soup.server.http.routers

Examples of org.one.stone.soup.server.http.routers.HttpFileRouter


      if(showDirectoryListings!=null)
      {
        directoryListings = new Boolean(showDirectoryListings).booleanValue();
      }

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

TOP

Related Classes of org.one.stone.soup.server.http.routers.HttpFileRouter

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.