Enum SyncResult.Status
java.lang.Object
java.lang.Enum<SyncResult.Status>
org.apache.jackrabbit.oak.spi.security.authentication.external.SyncResult.Status
- All Implemented Interfaces:
Serializable
,Comparable<SyncResult.Status>
- Enclosing interface:
- SyncResult
Result codes for sync operation.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionauthorizable addedauthorizable deletedauthorizable disabledauthorizable enablednothing changed.nothing changed.nothing changed.nothing changed.No updateauthorizable updated -
Method Summary
Modifier and TypeMethodDescriptionstatic SyncResult.Status
Returns the enum constant of this type with the specified name.static SyncResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NOP
No update -
ADD
authorizable added -
UPDATE
authorizable updated -
DELETE
authorizable deleted -
ENABLE
authorizable enabled -
DISABLE
authorizable disabled -
NO_SUCH_AUTHORIZABLE
nothing changed. no such authorizable found. -
NO_SUCH_IDENTITY
nothing changed. no such identity found. -
MISSING
nothing changed. corresponding identity missing -
FOREIGN
nothing changed. idp name not correct
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-