Package org.cast.cwm.dav

Examples of org.cast.cwm.dav.DavClientManager


    String davServer  = getDavServer();
    if (davServer != null) {
      final String davUser = appProperties.getProperty("isi.davUser");
      final String davPassword = appProperties.getProperty("isi.davPassword");
     
      DavClientManager manager = DavClientManager.get();
      manager.setDefaultAuthentication (davUser, davPassword);
      manager.createClient (davServer, davServer, getContentDir());
    }
   
    // Load glossary if there is one
    String glossaryFileName = appProperties.getProperty("isi.glossaryFile");
    if (glossaryOn == false) {
View Full Code Here

TOP

Related Classes of org.cast.cwm.dav.DavClientManager

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.