public enum AccessCertificationApprovalStrategyType extends Enum<AccessCertificationApprovalStrategyType>
Java class for AccessCertificationApprovalStrategyType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AccessCertificationApprovalStrategyType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="oneApprovalApproves"/> <enumeration value="oneDenyDenies"/> <enumeration value="approvedIfNotDenied"/> <enumeration value="allMustApprove"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALL_MUST_APPROVE
All reviewers must approve, i.e.
|
APPROVED_IF_NOT_DENIED
Approved if none of the reviewers denies (either via revoke or reduce).
|
ONE_APPROVAL_APPROVES
If at least one reviewer approves, the result is "APPROVED" regardless of the other votes.
|
ONE_DENY_DENIES
If at least one reviewer denies (either via revoke or reduce), the result is "NOT APPROVED".
|
Modifier and Type | Method and Description |
---|---|
static AccessCertificationApprovalStrategyType |
fromValue(String v) |
String |
value() |
static AccessCertificationApprovalStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessCertificationApprovalStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessCertificationApprovalStrategyType ONE_APPROVAL_APPROVES
public static final AccessCertificationApprovalStrategyType ONE_DENY_DENIES
public static final AccessCertificationApprovalStrategyType APPROVED_IF_NOT_DENIED
public static final AccessCertificationApprovalStrategyType ALL_MUST_APPROVE
public static AccessCertificationApprovalStrategyType[] values()
for (AccessCertificationApprovalStrategyType c : AccessCertificationApprovalStrategyType.values()) System.out.println(c);
public static AccessCertificationApprovalStrategyType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static AccessCertificationApprovalStrategyType fromValue(String v)
Copyright © 2015 Evolveum. All rights reserved.