Enum SynchronizationExclusionReasonType
- java.lang.Object
-
- java.lang.Enum<SynchronizationExclusionReasonType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.SynchronizationExclusionReasonType
-
- All Implemented Interfaces:
Serializable
,Comparable<SynchronizationExclusionReasonType>
public enum SynchronizationExclusionReasonType extends Enum<SynchronizationExclusionReasonType>
Java class for SynchronizationExclusionReasonType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SynchronizationExclusionReasonType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="synchronized"/> <enumeration value="protected"/> <enumeration value="noSynchronizationPolicy"/> <enumeration value="synchronizationDisabled"/> <enumeration value="synchronizationNotNeeded"/> <enumeration value="notApplicableForTask"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_SYNCHRONIZATION_POLICY
Resource object was excluded from synchronization because no synchronization policy was found.NOT_APPLICABLE_FOR_TASK
Resource object was excluded form synchronization because it is not applicable for the task.PROTECTED
Resource object was excluded from synchronization because it is protected.SYNCHRONIZATION_DISABLED
Resource object was excluded from synchronization because synchronization is disabled for it.SYNCHRONIZATION_NOT_NEEDED
Synchronization was not expected for the shadow in the particular situation.SYNCHRONIZED
Resource object was synchronized - either successfully or not.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SynchronizationExclusionReasonType
fromValue(String v)
String
value()
static SynchronizationExclusionReasonType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SynchronizationExclusionReasonType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNCHRONIZED
public static final SynchronizationExclusionReasonType SYNCHRONIZED
Resource object was synchronized - either successfully or not.
-
PROTECTED
public static final SynchronizationExclusionReasonType PROTECTED
Resource object was excluded from synchronization because it is protected.
-
NO_SYNCHRONIZATION_POLICY
public static final SynchronizationExclusionReasonType NO_SYNCHRONIZATION_POLICY
Resource object was excluded from synchronization because no synchronization policy was found.
-
SYNCHRONIZATION_DISABLED
public static final SynchronizationExclusionReasonType SYNCHRONIZATION_DISABLED
Resource object was excluded from synchronization because synchronization is disabled for it.
-
SYNCHRONIZATION_NOT_NEEDED
public static final SynchronizationExclusionReasonType SYNCHRONIZATION_NOT_NEEDED
Synchronization was not expected for the shadow in the particular situation. (E.g. a shadow exists in "remaining shadows" reconciliation activity.)
-
NOT_APPLICABLE_FOR_TASK
public static final SynchronizationExclusionReasonType NOT_APPLICABLE_FOR_TASK
Resource object was excluded form synchronization because it is not applicable for the task. (So it is skipped.)
-
-
Method Detail
-
values
public static SynchronizationExclusionReasonType[] 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 (SynchronizationExclusionReasonType c : SynchronizationExclusionReasonType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SynchronizationExclusionReasonType 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 SynchronizationExclusionReasonType fromValue(String v)
-
-