public static enum GlobalCfgDefn.InvalidAttributeSyntaxBehavior extends Enum<GlobalCfgDefn.InvalidAttributeSyntaxBehavior>
Specifies how the directory server should handle operations whenever an attribute value violates the associated attribute syntax.
Enum Constant and Description |
---|
ACCEPT
The directory server silently accepts attribute values that are
invalid according to their associated syntax.
|
REJECT
The directory server rejects attribute values that are invalid
according to their associated syntax.
|
WARN
The directory server accepts attribute values that are invalid
according to their associated syntax, but also logs a warning
message to the error log.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static GlobalCfgDefn.InvalidAttributeSyntaxBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalCfgDefn.InvalidAttributeSyntaxBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalCfgDefn.InvalidAttributeSyntaxBehavior ACCEPT
public static final GlobalCfgDefn.InvalidAttributeSyntaxBehavior REJECT
public static final GlobalCfgDefn.InvalidAttributeSyntaxBehavior WARN
public static GlobalCfgDefn.InvalidAttributeSyntaxBehavior[] values()
for (GlobalCfgDefn.InvalidAttributeSyntaxBehavior c : GlobalCfgDefn.InvalidAttributeSyntaxBehavior.values()) System.out.println(c);
public static GlobalCfgDefn.InvalidAttributeSyntaxBehavior 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.InvalidAttributeSyntaxBehavior>
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.