Exemplo n.º 1
0
 private void checkDiskSpace(Operation operation) throws DirectoryException {
   if (diskMonitor.isFullThresholdReached()
       || (diskMonitor.isLowThresholdReached()
           && operation != null
           && !operation
               .getClientConnection()
               .hasPrivilege(Privilege.BYPASS_LOCKDOWN, operation))) {
     throw new DirectoryException(
         ResultCode.UNWILLING_TO_PERFORM, WARN_JEB_OUT_OF_DISK_SPACE.get());
   }
 }