Package com.ettrema.http.fs

Examples of com.ettrema.http.fs.FileSystemResourceFactory


    this.serviceUrl = serviceUrl;
    this.docsRoot = docsRoot;

    FsSecurityManager securityManager = new NullSecurityManager();//SimpleSecurityManager();
    File file = new File(docsRoot);
    factory = new FileSystemResourceFactory(file, securityManager, ".");
  }
View Full Code Here


    securityManager.setDigestGenerator(new DigestGenerator());
   
    String home = System.getProperty("user.dir");
    File root = new File(home);
   
    FileSystemResourceFactory rf = new FileSystemResourceFactory(root, securityManager, home);
    rf.setLockManager(lockManager);
    rf.setContextPath("/webdav");
    rf.setSsoPrefix("XXX");
   
   
   
    SsoResourceFactory ssoResourceFactory = new SsoResourceFactory(rf, ssoSessionProvider);
    SsoAuthenticationHandler ssoAuthenticationHandler = new SsoAuthenticationHandler();
View Full Code Here

TOP

Related Classes of com.ettrema.http.fs.FileSystemResourceFactory

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.