Interface AdminEndpointCfg
-
- All Superinterfaces:
Configuration
,HttpEndpointCfg
public interface AdminEndpointCfg extends HttpEndpointCfg
A server-side interface for querying 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 void
addAdminEndpointChangeListener(ConfigurationChangeListener<AdminEndpointCfg> listener)
Register to be notified when this Admin Endpoint is changed.Class<? extends AdminEndpointCfg>
configurationClass()
Gets the configuration class associated with this Admin Endpoint.String
getJavaClass()
Gets the "java-class" property.void
removeAdminEndpointChangeListener(ConfigurationChangeListener<AdminEndpointCfg> listener)
Deregister an existing Admin Endpoint configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.HttpEndpointCfg
addChangeListener, getAuthorizationMechanism, getAuthorizationMechanismDns, getBasePath, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends AdminEndpointCfg> configurationClass()
Gets the configuration class associated with this Admin Endpoint.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceHttpEndpointCfg
- Returns:
- Returns the configuration class associated with this Admin Endpoint.
-
addAdminEndpointChangeListener
void addAdminEndpointChangeListener(ConfigurationChangeListener<AdminEndpointCfg> listener)
Register to be notified when this Admin Endpoint is changed.- Parameters:
listener
- The Admin Endpoint configuration change listener.
-
removeAdminEndpointChangeListener
void removeAdminEndpointChangeListener(ConfigurationChangeListener<AdminEndpointCfg> listener)
Deregister an existing Admin Endpoint configuration change listener.- Parameters:
listener
- The Admin Endpoint configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Admin Endpoint implementation.
Default value:
org.opends.server.protocols.http.rest2ldap.AdminEndpoint
- Specified by:
getJavaClass
in interfaceHttpEndpointCfg
- Returns:
- Returns the value of the "java-class" property.
-
-