public static enum GlobalCfgDefn.WritabilityMode extends Enum<GlobalCfgDefn.WritabilityMode>
Specifies the kinds of write operations the directory server can process.
Enum Constant and Description |
---|
DISABLED
The directory server rejects all write operations that are
requested of it, regardless of their origin.
|
ENABLED
The directory server attempts to process all write operations
that are requested of it, regardless of their origin.
|
INTERNAL_ONLY
The directory server attempts to process write operations
requested as internal operations or through synchronization, but
rejects any such operations requested from external clients.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static GlobalCfgDefn.WritabilityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalCfgDefn.WritabilityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalCfgDefn.WritabilityMode DISABLED
public static final GlobalCfgDefn.WritabilityMode ENABLED
public static final GlobalCfgDefn.WritabilityMode INTERNAL_ONLY
public static GlobalCfgDefn.WritabilityMode[] values()
for (GlobalCfgDefn.WritabilityMode c : GlobalCfgDefn.WritabilityMode.values()) System.out.println(c);
public static GlobalCfgDefn.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<GlobalCfgDefn.WritabilityMode>
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.