Interface UserDefinedVirtualAttributeCfgClient
-
- All Superinterfaces:
ConfigurationClient,VirtualAttributeCfgClient
public interface UserDefinedVirtualAttributeCfgClient extends VirtualAttributeCfgClient
A client-side interface for reading and modifying User Defined Virtual Attribute settings.The User Defined Virtual Attribute creates virtual attributes with user-defined values in entries that match the criteria defined in the plug-in's configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends UserDefinedVirtualAttributeCfgClient,? extends UserDefinedVirtualAttributeCfg>definition()Get the configuration definition associated with this User Defined Virtual Attribute.StringgetJavaClass()Gets the "java-class" property.SortedSet<String>getValue()Gets the "value" property.voidsetJavaClass(String value)Sets the "java-class" property.voidsetValue(Collection<String> values)Sets the "value" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
Methods inherited from interface org.forgerock.opendj.server.config.client.VirtualAttributeCfgClient
getAttributeType, getBaseDN, getConflictBehavior, getFilter, getGroupDN, getScope, isEnabled, setAttributeType, setBaseDN, setConflictBehavior, setEnabled, setFilter, setGroupDN, setScope
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends UserDefinedVirtualAttributeCfgClient,? extends UserDefinedVirtualAttributeCfg> definition()
Get the configuration definition associated with this User Defined Virtual Attribute.- Specified by:
definitionin interfaceConfigurationClient- Specified by:
definitionin interfaceVirtualAttributeCfgClient- Returns:
- Returns the configuration definition associated with this User Defined Virtual Attribute.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the virtual attribute provider class that generates the attribute values.
- Specified by:
getJavaClassin interfaceVirtualAttributeCfgClient- 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 virtual attribute provider class that generates the attribute values.
- Specified by:
setJavaClassin interfaceVirtualAttributeCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
getValue
SortedSet<String> getValue()
Gets the "value" property.Specifies the values to be included in the virtual attribute.
- Returns:
- Returns the values of the "value" property.
-
setValue
void setValue(Collection<String> values) throws PropertyException
Sets the "value" property.Specifies the values to be included in the virtual attribute.
- Parameters:
values- The values of the "value" property.- Throws:
PropertyException- If one or more of the new values are invalid.
-
-