Enum Class ValuePolicyOriginType

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

public enum ValuePolicyOriginType extends Enum<ValuePolicyOriginType> implements TypeSafeEnum
TODO
  • Enum Constant Details

    • OBJECT

      public static final ValuePolicyOriginType OBJECT
      Object is the origin. Object usually means the user. E.g. in case of password policy, object is the user who's password is changed.
    • PERSONA

      public static final ValuePolicyOriginType PERSONA
      Object's persona is the origin. E.g. in case of password policy all user personas will be scanned.
    • OWNER

      public static final ValuePolicyOriginType OWNER
      Object's owner is the origin. E.g. in case of user password policy all personas that point to this user will be scanned. In case of account password policy the user who owns the account is scanned. Note: owner for accounts is not implemented yet
    • PROJECTION

      public static final ValuePolicyOriginType PROJECTION
      One of object's projection is the origin. E.g. in case of user password specific projection linked to the user will be scanned. If this origin type is selected then also the projectionDiscriminator must be specified. Note: Currently the only supported value is resource password.
  • Method Details

    • values

      public static ValuePolicyOriginType[] 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 ValuePolicyOriginType 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 ValuePolicyOriginType fromValue(String v)