|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SynchronizationPolicyDecision>
com.evolveum.midpoint.model.api.context.SynchronizationPolicyDecision
public enum SynchronizationPolicyDecision
Describes what the policy "decides" about a specific account.
Enum Constant Summary | |
---|---|
ADD
New account that is going to be added (and linked) |
|
BROKEN
The account is not usable. |
|
DELETE
Existing account that is going to be deleted (and unlinked) |
|
KEEP
Existing account that is kept as it is (remains linked). |
|
UNLINK
Existing account that is going to be unlinked (but NOT deleted) |
Method Summary | |
---|---|
static SynchronizationPolicyDecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SynchronizationPolicyDecision[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SynchronizationPolicyDecision ADD
public static final SynchronizationPolicyDecision DELETE
public static final SynchronizationPolicyDecision KEEP
public static final SynchronizationPolicyDecision UNLINK
public static final SynchronizationPolicyDecision BROKEN
Method Detail |
---|
public static SynchronizationPolicyDecision[] values()
for (SynchronizationPolicyDecision c : SynchronizationPolicyDecision.values()) System.out.println(c);
public static SynchronizationPolicyDecision valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |