Interface SevenBitCleanPluginCfgClient
-
- All Superinterfaces:
ConfigurationClient,PluginCfgClient
public interface SevenBitCleanPluginCfgClient extends PluginCfgClient
A client-side interface for reading and modifying Seven Bit Clean Plugin settings.The Seven Bit Clean Plugin ensures that values for a specified set of attributes are 7-bit clean.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends SevenBitCleanPluginCfgClient,? extends SevenBitCleanPluginCfg>definition()Get the configuration definition associated with this Seven Bit Clean Plugin.SortedSet<org.forgerock.opendj.ldap.schema.AttributeType>getAttributeType()Gets the "attribute-type" property.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.voidsetAttributeType(Collection<org.forgerock.opendj.ldap.schema.AttributeType> values)Sets the "attribute-type" property.voidsetBaseDN(Collection<org.forgerock.opendj.ldap.DN> values)Sets the "base-dn" property.voidsetJavaClass(String value)Sets the "java-class" property.voidsetPluginType(Collection<PluginCfgDefn.PluginType> values)Sets the "plugin-type" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
Methods inherited from interface org.forgerock.opendj.server.config.client.PluginCfgClient
isEnabled, isInvokeForInternalOperations, setEnabled, setInvokeForInternalOperations
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends SevenBitCleanPluginCfgClient,? extends SevenBitCleanPluginCfg> definition()
Get the configuration definition associated with this Seven Bit Clean Plugin.- Specified by:
definitionin interfaceConfigurationClient- Specified by:
definitionin interfacePluginCfgClient- Returns:
- Returns the configuration definition associated with this Seven Bit Clean Plugin.
-
getAttributeType
SortedSet<org.forgerock.opendj.ldap.schema.AttributeType> getAttributeType()
Gets the "attribute-type" property.Specifies the name or OID of an attribute type for which values should be checked to ensure that they are 7-bit clean.
- Returns:
- Returns the values of the "attribute-type" property.
-
setAttributeType
void setAttributeType(Collection<org.forgerock.opendj.ldap.schema.AttributeType> values) throws PropertyException
Sets the "attribute-type" property.Specifies the name or OID of an attribute type for which values should be checked to ensure that they are 7-bit clean.
- Parameters:
values- The values of the "attribute-type" property.- Throws:
PropertyException- If one or more of the new values are invalid.
-
getBaseDN
SortedSet<org.forgerock.opendj.ldap.DN> getBaseDN()
Gets the "base-dn" property.Specifies the base DN below which the checking is performed.
Any attempt to update a value for one of the configured attributes below this base DN must be 7-bit clean for the operation to be allowed.
- Returns:
- Returns the values of the "base-dn" property.
-
setBaseDN
void setBaseDN(Collection<org.forgerock.opendj.ldap.DN> values) throws PropertyException
Sets the "base-dn" property.Specifies the base DN below which the checking is performed.
Any attempt to update a value for one of the configured attributes below this base DN must be 7-bit clean for the operation to be allowed.
- Parameters:
values- The values of the "base-dn" property.- Throws:
PropertyException- If one or more of the new values are invalid.
-
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 interfacePluginCfgClient- Returns:
- Returns the value of the "java-class" property.
-
setJavaClass
void setJavaClass(String value) throws PropertyException
Sets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the plug-in implementation.
- Specified by:
setJavaClassin interfacePluginCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
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 interfacePluginCfgClient- Returns:
- Returns the values of the "plugin-type" property.
-
setPluginType
void setPluginType(Collection<PluginCfgDefn.PluginType> values) throws PropertyException
Sets 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:
setPluginTypein interfacePluginCfgClient- Parameters:
values- The values of the "plugin-type" property.- Throws:
PropertyException- If one or more of the new values are invalid.
-
-