Enum SynchronizationPolicyDecisionType
- java.lang.Object
-
- java.lang.Enum<SynchronizationPolicyDecisionType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.SynchronizationPolicyDecisionType
-
- All Implemented Interfaces:
Serializable
,Comparable<SynchronizationPolicyDecisionType>
public enum SynchronizationPolicyDecisionType extends Enum<SynchronizationPolicyDecisionType>
Java class for SynchronizationPolicyDecisionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SynchronizationPolicyDecisionType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="add"/> <enumeration value="delete"/> <enumeration value="keep"/> <enumeration value="unlink"/> <enumeration value="broken"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description 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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SynchronizationPolicyDecisionType
fromValue(String v)
String
value()
static SynchronizationPolicyDecisionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SynchronizationPolicyDecisionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final SynchronizationPolicyDecisionType ADD
New account that is going to be added (and linked).
-
DELETE
public static final SynchronizationPolicyDecisionType DELETE
Existing account that is going to be deleted (and unlinked).
-
KEEP
public static final SynchronizationPolicyDecisionType KEEP
Existing account that is kept as it is (remains linked). Note: there still may be attribute or entitlement changes.
-
UNLINK
public static final SynchronizationPolicyDecisionType UNLINK
Existing account that is going to be unlinked (but NOT deleted).
-
BROKEN
public static final SynchronizationPolicyDecisionType BROKEN
The account is not usable. E.g. because the associated shadow does not exist any more, resource does not exists any more, etc. Such account link will be removed.
-
-
Method Detail
-
values
public static SynchronizationPolicyDecisionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SynchronizationPolicyDecisionType c : SynchronizationPolicyDecisionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SynchronizationPolicyDecisionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
fromValue
public static SynchronizationPolicyDecisionType fromValue(String v)
-
-