Enum SyncResult.Status
- java.lang.Object
-
- java.lang.Enum<SyncResult.Status>
-
- org.apache.jackrabbit.oak.spi.security.authentication.external.SyncResult.Status
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SyncResult.Status>
- Enclosing interface:
- SyncResult
public static enum SyncResult.Status extends java.lang.Enum<SyncResult.Status>
Result codes for sync operation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD
authorizable addedDELETE
authorizable deletedDISABLE
authorizable disabledENABLE
authorizable enabledFOREIGN
nothing changed.MISSING
nothing changed.NO_SUCH_AUTHORIZABLE
nothing changed.NO_SUCH_IDENTITY
nothing changed.NOP
No updateUPDATE
authorizable updated
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SyncResult.Status
valueOf(java.lang.String name)
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 Detail
-
NOP
public static final SyncResult.Status NOP
No update
-
ADD
public static final SyncResult.Status ADD
authorizable added
-
UPDATE
public static final SyncResult.Status UPDATE
authorizable updated
-
DELETE
public static final SyncResult.Status DELETE
authorizable deleted
-
ENABLE
public static final SyncResult.Status ENABLE
authorizable enabled
-
DISABLE
public static final SyncResult.Status DISABLE
authorizable disabled
-
NO_SUCH_AUTHORIZABLE
public static final SyncResult.Status NO_SUCH_AUTHORIZABLE
nothing changed. no such authorizable found.
-
NO_SUCH_IDENTITY
public static final SyncResult.Status NO_SUCH_IDENTITY
nothing changed. no such identity found.
-
MISSING
public static final SyncResult.Status MISSING
nothing changed. corresponding identity missing
-
FOREIGN
public static final SyncResult.Status FOREIGN
nothing changed. idp name not correct
-
-
Method Detail
-
values
public static SyncResult.Status[] 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 (SyncResult.Status c : SyncResult.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyncResult.Status valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-