Examples of SessionManager


Examples of unibg.overencrypt.server.managers.SessionManager

  public void init() {
    log.debug("OverEncryption Server initialization");
    try{
      XMLConfiguration config = new XMLConfiguration("OverEncrypt.cfg.xml");
      //Initialized session manager
      sessionManager = new SessionManager();
      //Server WebDAV configuration
      if(config.getString("webdav-server.context") != null)      ServerConfiguration.setCONTEXT(config.getString("webdav-server.context"));
      if(config.getString("webdav-server.realm") != null)      ServerConfiguration.setREALM(config.getString("webdav-server.realm"));
      if(config.getString("webdav-server.filesystem-root") != null) ServerConfiguration.setWebDAVrootPath(config.getString("webdav-server.filesystem-root").replace("~", System.getProperty("user.home")));
      if(config.getString("webdav-server.temp-folder") != null)    ServerConfiguration.setTempFilePath(config.getString("webdav-server.temp-folder"));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.