Interface VirtualStaticGroupImplementationCfgClient
-
- All Superinterfaces:
ConfigurationClient
,GroupImplementationCfgClient
public interface VirtualStaticGroupImplementationCfgClient extends GroupImplementationCfgClient
A client-side interface for reading and modifying Virtual Static Group Implementation settings.The Virtual Static Group Implementation provides a grouping mechanism in which the membership for the virtual static group is based on the membership for another group defined within the server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends VirtualStaticGroupImplementationCfgClient,? extends VirtualStaticGroupImplementationCfg>
definition()
Get the configuration definition associated with this Virtual Static Group Implementation.ValueOrExpression<String>
getJavaClass()
Gets the "java-class" property.void
setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
Methods inherited from interface org.forgerock.opendj.server.config.client.GroupImplementationCfgClient
isEnabled, setEnabled
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends VirtualStaticGroupImplementationCfgClient,? extends VirtualStaticGroupImplementationCfg> definition()
Get the configuration definition associated with this Virtual Static Group Implementation.- Specified by:
definition
in interfaceConfigurationClient
- Specified by:
definition
in interfaceGroupImplementationCfgClient
- Returns:
- Returns the configuration definition associated with this Virtual Static Group Implementation.
-
getJavaClass
@MandatoryProperty ValueOrExpression<String> getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Virtual Static Group Implementation implementation.
Default value:
org.opends.server.extensions.VirtualStaticGroup
- Specified by:
getJavaClass
in interfaceGroupImplementationCfgClient
- Returns:
- Returns the value of the "java-class" property.
-
setJavaClass
@MandatoryProperty void setJavaClass(ValueOrExpression<String> value) throws PropertyException
Sets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Virtual Static Group Implementation implementation.
- Specified by:
setJavaClass
in interfaceGroupImplementationCfgClient
- Parameters:
value
- The value of the "java-class" property.- Throws:
PropertyException
- If the new value is invalid.
-
-