public enum DataProviderStatus extends Enum<DataProviderStatus>
Enum Constant and Description |
---|
DISABLED
The data provider is disabled and rejecting all operations.
|
ENABLED
The data provider is enabled and accepting all operations.
|
READ_ONLY
The data provider is only accepting read operations; all write operations
will be rejected.
|
WRITE_INTERNAL_ONLY
The data provider is accepting read operations, internal write
operations, and updates through synchronization; all other write
operations will be rejected.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Retrieves a string representation of this status.
|
static DataProviderStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataProviderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataProviderStatus DISABLED
public static final DataProviderStatus ENABLED
public static final DataProviderStatus READ_ONLY
public static final DataProviderStatus WRITE_INTERNAL_ONLY
public static DataProviderStatus[] values()
for (DataProviderStatus c : DataProviderStatus.values()) System.out.println(c);
public static DataProviderStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<DataProviderStatus>
Copyright 2010-2017 ForgeRock AS.