Enum ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria
- java.lang.Object
-
- java.lang.Enum<ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria>
-
- org.forgerock.opendj.server.config.meta.ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria
-
- All Implemented Interfaces:
Serializable
,Comparable<ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria>
- Enclosing class:
- ReferentialIntegrityPluginCfgDefn
public static enum ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria extends Enum<ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria>
Defines the set of permissible values for the "check-references-scope-criteria" property.Specifies whether referenced entries must reside within the same naming context as the entry containing the reference.
The reference scope will only be enforced when reference checking is enabled.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GLOBAL
References may refer to existing entries located anywhere in the Directory.NAMING_CONTEXT
References must refer to existing entries located within the same naming context.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GLOBAL
public static final ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria GLOBAL
References may refer to existing entries located anywhere in the Directory.
-
NAMING_CONTEXT
public static final ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria NAMING_CONTEXT
References must refer to existing entries located within the same naming context.
-
-
Method Detail
-
values
public static ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria c : ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria>
-
-