Interface UniqueAttributePluginCfg
-
- All Superinterfaces:
Configuration,PluginCfg
public interface UniqueAttributePluginCfg extends PluginCfg
A server-side interface for querying Unique Attribute Plugin settings.The Unique Attribute Plugin enforces constraints on the value of an attribute within a portion of the directory.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddUniqueAttributeChangeListener(ConfigurationChangeListener<UniqueAttributePluginCfg> listener)Register to be notified when this Unique Attribute Plugin is changed.Class<? extends UniqueAttributePluginCfg>configurationClass()Gets the configuration class associated with this Unique Attribute Plugin.SortedSet<org.forgerock.opendj.ldap.DN>getBaseDN()Gets the "base-dn" property.StringgetJavaClass()Gets the "java-class" property.SortedSet<PluginCfgDefn.PluginType>getPluginType()Gets the "plugin-type" property.SortedSet<org.forgerock.opendj.ldap.schema.AttributeType>getType()Gets the "type" property.voidremoveUniqueAttributeChangeListener(ConfigurationChangeListener<UniqueAttributePluginCfg> listener)Deregister an existing Unique Attribute Plugin configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.PluginCfg
addChangeListener, isEnabled, isInvokeForInternalOperations, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends UniqueAttributePluginCfg> configurationClass()
Gets the configuration class associated with this Unique Attribute Plugin.- Specified by:
configurationClassin interfaceConfiguration- Specified by:
configurationClassin interfacePluginCfg- Returns:
- Returns the configuration class associated with this Unique Attribute Plugin.
-
addUniqueAttributeChangeListener
void addUniqueAttributeChangeListener(ConfigurationChangeListener<UniqueAttributePluginCfg> listener)
Register to be notified when this Unique Attribute Plugin is changed.- Parameters:
listener- The Unique Attribute Plugin configuration change listener.
-
removeUniqueAttributeChangeListener
void removeUniqueAttributeChangeListener(ConfigurationChangeListener<UniqueAttributePluginCfg> listener)
Deregister an existing Unique Attribute Plugin configuration change listener.- Parameters:
listener- The Unique Attribute Plugin configuration change listener.
-
getBaseDN
SortedSet<org.forgerock.opendj.ldap.DN> getBaseDN()
Gets the "base-dn" property.Specifies a base DN within which the attribute must be unique.
- Returns:
- Returns an unmodifiable set containing the values of the "base-dn" property.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the plug-in implementation.
- Specified by:
getJavaClassin interfacePluginCfg- Returns:
- Returns the value of the "java-class" property.
-
getPluginType
SortedSet<PluginCfgDefn.PluginType> getPluginType()
Gets the "plugin-type" property.Specifies the set of plug-in types for the plug-in, which specifies the times at which the plug-in is invoked.
- Specified by:
getPluginTypein interfacePluginCfg- Returns:
- Returns an unmodifiable set containing the values of the "plugin-type" property.
-
getType
SortedSet<org.forgerock.opendj.ldap.schema.AttributeType> getType()
Gets the "type" property.Specifies the type of attributes to check for value uniqueness.
- Returns:
- Returns an unmodifiable set containing the values of the "type" property.
-
-