public static enum LocalBackend.BackendOperation extends Enum<LocalBackend.BackendOperation>
Enum Constant and Description |
---|
BACKUP
Indicates whether this backend provides a backup mechanism of any kind.
|
INDEXING
Indicates whether this backend supports indexing attributes to speed up searches.
|
LDIF_EXPORT
Indicates whether this backend supports exporting the data it contains to an LDIF file.
|
LDIF_IMPORT
Indicates whether this backend supports importing its data from an LDIF file.
|
OFFLINE_RESTORE
Indicates whether this backend can restore a backup when the server is offline.
|
ONLINE_RESTORE
Indicates whether this backend can restore a backup when the server is online.
|
Modifier and Type | Method and Description |
---|---|
static LocalBackend.BackendOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalBackend.BackendOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalBackend.BackendOperation INDEXING
public static final LocalBackend.BackendOperation LDIF_EXPORT
public static final LocalBackend.BackendOperation LDIF_IMPORT
public static final LocalBackend.BackendOperation BACKUP
true
for backends that it is not possible to archive directly (e.g., those that
don't store their data locally, but rather pass through requests to some other repository).public static final LocalBackend.BackendOperation OFFLINE_RESTORE
public static final LocalBackend.BackendOperation ONLINE_RESTORE
public static LocalBackend.BackendOperation[] values()
for (LocalBackend.BackendOperation c : LocalBackend.BackendOperation.values()) System.out.println(c);
public static LocalBackend.BackendOperation 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 nullCopyright 2010-2022 ForgeRock AS.