public static enum VirtualAttributeCfgDefn.ConflictBehavior extends Enum<VirtualAttributeCfgDefn.ConflictBehavior>
Specifies the behavior that the server is to exhibit for entries that already contain one or more real values for the associated attribute.
Enum Constant and Description |
---|
MERGE_REAL_AND_VIRTUAL
Indicates that the virtual attribute provider is to preserve
any real values contained in the entry and merge them with the
set of generated virtual values so that both the real and
virtual values are used.
|
REAL_OVERRIDES_VIRTUAL
Indicates that any real values contained in the entry are
preserved and used, and virtual values are not generated.
|
VIRTUAL_OVERRIDES_REAL
Indicates that the virtual attribute provider suppresses any
real values contained in the entry and generates virtual values
and uses them.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static VirtualAttributeCfgDefn.ConflictBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualAttributeCfgDefn.ConflictBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualAttributeCfgDefn.ConflictBehavior MERGE_REAL_AND_VIRTUAL
public static final VirtualAttributeCfgDefn.ConflictBehavior REAL_OVERRIDES_VIRTUAL
public static final VirtualAttributeCfgDefn.ConflictBehavior VIRTUAL_OVERRIDES_REAL
public static VirtualAttributeCfgDefn.ConflictBehavior[] values()
for (VirtualAttributeCfgDefn.ConflictBehavior c : VirtualAttributeCfgDefn.ConflictBehavior.values()) System.out.println(c);
public static VirtualAttributeCfgDefn.ConflictBehavior 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<VirtualAttributeCfgDefn.ConflictBehavior>
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.