Enum Class AccessCertificationCampaignStateType

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

public enum AccessCertificationCampaignStateType extends Enum<AccessCertificationCampaignStateType> implements TypeSafeEnum
An enumeration that defines possible states of a certification campaign.
  • Enum Constant Details

    • CREATED

      public static final AccessCertificationCampaignStateType CREATED
      Campaign was created, but its first stage has not been started yet. Current stage number is 0.
    • IN_REVIEW_STAGE

      public static final AccessCertificationCampaignStateType IN_REVIEW_STAGE
      Review is being carried out, in a given stage. Current stage number is between 1 and N (number of stages).
    • REVIEW_STAGE_DONE

      public static final AccessCertificationCampaignStateType REVIEW_STAGE_DONE
      A given review stage was done. Next stage nor remediation (if any) has not started yet. Current stage number indicates the number of stage that has been recently done.
    • IN_REMEDIATION

      public static final AccessCertificationCampaignStateType IN_REMEDIATION
      The last stage was closed, remediation (either automated or manual) is in progress.
    • CLOSED

      public static final AccessCertificationCampaignStateType CLOSED
      Review and possibly remediation is over. The campaign is closed.
  • Method Details

    • values

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