Enum Class SynchronizationPolicyDecision
java.lang.Object
java.lang.Enum<SynchronizationPolicyDecision>
com.evolveum.midpoint.model.api.context.SynchronizationPolicyDecision
- All Implemented Interfaces:
Serializable
,Comparable<SynchronizationPolicyDecision>
,Constable
Describes what the policy "decides" about a specific account.
- Author:
- Radovan Semancik
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionNew account that is going to be added (and linked)The projection is broken.Existing account that is going to be deleted (and unlinked)The account is not usable.Existing account that is kept as it is (remains linked).Existing account that should be unlinked (but NOT deleted). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static SynchronizationPolicyDecision[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ADD
New account that is going to be added (and linked) -
DELETE
Existing account that is going to be deleted (and unlinked) -
KEEP
Existing account that is kept as it is (remains linked). Note: there still may be attribute or entitlement changes. -
UNLINK
Existing account that should be unlinked (but NOT deleted). By unlinking we mean either physically removing a value from `linkRef`. -
BROKEN
The projection is broken. I.e. there is some (fixable) state that prevents proper operations with the projection. This may be schema violation problem, security problem (access denied), misconfiguration, etc. Broken projections will be kept in the state that they are (maintaining status quo) until the problem is fixed. We will do no operations on broken projections and we will NOT unlink them or delete them. -
IGNORE
The account is not usable. Context was created, but the account will be skipped. this is used only for evaluation assigment and the assigment policies
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
toSynchronizationPolicyDecisionType
-
fromSynchronizationPolicyDecisionType
public static SynchronizationPolicyDecision fromSynchronizationPolicyDecisionType(SynchronizationPolicyDecisionType value)
-