Interface AdminEndpointCfgClient
-
- All Superinterfaces:
ConfigurationClient,HTTPEndpointCfgClient
public interface AdminEndpointCfgClient extends HTTPEndpointCfgClient
A client-side interface for reading and modifying Admin Endpoint settings.The Admin Endpoint provides RESTful access to OpenDJ's monitoring and configuration backends.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends AdminEndpointCfgClient,? extends AdminEndpointCfg>definition()Get the configuration definition associated with this Admin Endpoint.StringgetJavaClass()Gets the "java-class" property.voidsetJavaClass(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.HTTPEndpointCfgClient
getAuthorizationMechanism, getBasePath, isEnabled, setAuthorizationMechanism, setBasePath, setEnabled
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends AdminEndpointCfgClient,? extends AdminEndpointCfg> definition()
Get the configuration definition associated with this Admin Endpoint.- Specified by:
definitionin interfaceConfigurationClient- Specified by:
definitionin interfaceHTTPEndpointCfgClient- Returns:
- Returns the configuration definition associated with this Admin Endpoint.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Admin Endpoint implementation.
- Specified by:
getJavaClassin interfaceHTTPEndpointCfgClient- 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 Admin Endpoint implementation.
- Specified by:
setJavaClassin interfaceHTTPEndpointCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
-