public enum AccessCertificationCaseOutcomeStrategyType extends Enum<AccessCertificationCaseOutcomeStrategyType>
Java class for AccessCertificationCaseOutcomeStrategyType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AccessCertificationCaseOutcomeStrategyType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="oneAcceptAccepts"/> <enumeration value="oneDenyDenies"/> <enumeration value="acceptedIfNotDenied"/> <enumeration value="allMustAccept"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ACCEPTED_IF_NOT_DENIED
Approved if none of the reviewers denies (either via revoke or reduce).
|
ALL_MUST_ACCEPT
All reviewers must approve, i.e.
|
ONE_ACCEPT_ACCEPTS
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 AccessCertificationCaseOutcomeStrategyType |
fromValue(String v) |
String |
value() |
static AccessCertificationCaseOutcomeStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessCertificationCaseOutcomeStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessCertificationCaseOutcomeStrategyType ONE_ACCEPT_ACCEPTS
public static final AccessCertificationCaseOutcomeStrategyType ONE_DENY_DENIES
public static final AccessCertificationCaseOutcomeStrategyType ACCEPTED_IF_NOT_DENIED
public static final AccessCertificationCaseOutcomeStrategyType ALL_MUST_ACCEPT
public static AccessCertificationCaseOutcomeStrategyType[] values()
for (AccessCertificationCaseOutcomeStrategyType c : AccessCertificationCaseOutcomeStrategyType.values()) System.out.println(c);
public static AccessCertificationCaseOutcomeStrategyType 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 AccessCertificationCaseOutcomeStrategyType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.