public static enum BackendCfgDefn.WritabilityMode extends Enum<BackendCfgDefn.WritabilityMode>
Specifies the behavior that the backend should use when processing write operations.
Enum Constant and Description |
---|
DISABLED
Causes all write attempts to fail.
|
ENABLED
Allows write operations to be performed in that backend (if the
requested operation is valid, the user has permission to perform
the operation, the backend supports that type of write
operation, and the global writability-mode property is also
enabled).
|
INTERNAL_ONLY
Causes external write attempts to fail but allows writes by
replication and internal operations.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static BackendCfgDefn.WritabilityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackendCfgDefn.WritabilityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackendCfgDefn.WritabilityMode DISABLED
public static final BackendCfgDefn.WritabilityMode ENABLED
public static final BackendCfgDefn.WritabilityMode INTERNAL_ONLY
public static BackendCfgDefn.WritabilityMode[] values()
for (BackendCfgDefn.WritabilityMode c : BackendCfgDefn.WritabilityMode.values()) System.out.println(c);
public static BackendCfgDefn.WritabilityMode 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<BackendCfgDefn.WritabilityMode>
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.