Enum Class CredentialsStorageTypeType

java.lang.Object
java.lang.Enum<CredentialsStorageTypeType>
com.evolveum.midpoint.xml.ns._public.common.common_3.CredentialsStorageTypeType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<CredentialsStorageTypeType>, Constable

public enum CredentialsStorageTypeType extends Enum<CredentialsStorageTypeType> implements TypeSafeEnum
  • Enum Constant Details

    • ENCRYPTION

      public static final CredentialsStorageTypeType ENCRYPTION
      Credential will be stored in an encrypted form. This is a symmetric (reversible) encryption. MidPoint will be able to get a cleartext form of the credential if needed.
    • HASHING

      public static final CredentialsStorageTypeType HASHING
      Credential will be stored in a hashed form. One-way (irreversible) cryptographic hash or key derivation function will be used to transform the credential before storage. MidPoint will NOT be able to get a cleartext form of the credential, but it can still compare credential values.
    • NONE

      public static final CredentialsStorageTypeType NONE
      MidPoint will not store the credential at all. MidPoint will only work with credential in the memory while it is needed to complete current operation. The credential will be discarded after the operation. THIS IS ONLY PARTIALLY SUPPORTED MidPoint should be able not to store the credentials when this setting is used. But there may be side effects that are not completely addressed yet. This is not entirely tested and not supported. Use at your own risk.
  • Method Details

    • values

      public static CredentialsStorageTypeType[] 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 CredentialsStorageTypeType 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
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static CredentialsStorageTypeType fromValue(String v)