Enum Class LockRecordResult

java.lang.Object
java.lang.Enum<LockRecordResult>
io.goobi.viewer.model.security.recordlock.LockRecordResult
All Implemented Interfaces:
Serializable, Comparable<LockRecordResult>, Constable

public enum LockRecordResult extends Enum<LockRecordResult>
Possible result for a record lock action, specifically RecordLockManager.lockRecord(String, String, Integer)
  • Enum Constant Details

    • RECORD_LOCKED

      public static final LockRecordResult RECORD_LOCKED
      The action was carried out and the record is locked
    • NO_ACTION

      public static final LockRecordResult NO_ACTION
      No action was carried out, either because no locking is required, or because the record is already locked by this sessions
    • LIMIT_EXCEEDED

      public static final LockRecordResult LIMIT_EXCEEDED
      The record could not be locked because the lock limit has already been exceeded
  • Method Details

    • values

      public static LockRecordResult[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LockRecordResult valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null