Package org.olat.core.util.vfs

Examples of org.olat.core.util.vfs.Quota


    private void initFolderQuota(String relPath) {
      QuotaManager qm = QuotaManager.getInstance();
      folderQuota = qm.getCustomQuota(relPath);
      if (folderQuota == null) {
        Quota defQuota = qm.getDefaultQuota(QuotaConstants.IDENTIFIER_DEFAULT_GROUPS);
        folderQuota = QuotaManager.getInstance().createQuota(relPath, defQuota.getQuotaKB(), defQuota.getUlLimitKB());
      }
    }
View Full Code Here

TOP

Related Classes of org.olat.core.util.vfs.Quota

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.