Esempio n. 1
0
 /**
  * AppData constructor.
  *
  * @param IRootFolder rootFolder
  * @param SystemConfig systemConfig
  * @param string appId
  */
 public AppData(IRootFolder rootFolder,
                SystemConfig systemConfig,
                string appId)
 {
     this.rootFolder = rootFolder;
     this.config     = systemConfig;
     this.appId      = appId;
     this.folders    = new CappedMemoryCache();
 }
Esempio n. 2
0
 /**
  * @param SystemConfig systemConfig
  */
 public AllConfig(SystemConfig systemConfig)
 {
     this.userCache    = new CappedMemoryCache();
     this.systemConfig = systemConfig;
 }