Interface CancelExtendedOperationHandlerCfg
-
- All Superinterfaces:
Configuration,ExtendedOperationHandlerCfg
public interface CancelExtendedOperationHandlerCfg extends ExtendedOperationHandlerCfg
A server-side interface for querying Cancel Extended Operation Handler settings.The Cancel Extended Operation Handler provides support for the LDAP cancel extended operation as defined in RFC 3909.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddCancelChangeListener(ConfigurationChangeListener<CancelExtendedOperationHandlerCfg> listener)Register to be notified when this Cancel Extended Operation Handler is changed.Class<? extends CancelExtendedOperationHandlerCfg>configurationClass()Gets the configuration class associated with this Cancel Extended Operation Handler.StringgetJavaClass()Gets the "java-class" property.voidremoveCancelChangeListener(ConfigurationChangeListener<CancelExtendedOperationHandlerCfg> listener)Deregister an existing Cancel Extended Operation Handler configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.ExtendedOperationHandlerCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends CancelExtendedOperationHandlerCfg> configurationClass()
Gets the configuration class associated with this Cancel Extended Operation Handler.- Specified by:
configurationClassin interfaceConfiguration- Specified by:
configurationClassin interfaceExtendedOperationHandlerCfg- Returns:
- Returns the configuration class associated with this Cancel Extended Operation Handler.
-
addCancelChangeListener
void addCancelChangeListener(ConfigurationChangeListener<CancelExtendedOperationHandlerCfg> listener)
Register to be notified when this Cancel Extended Operation Handler is changed.- Parameters:
listener- The Cancel Extended Operation Handler configuration change listener.
-
removeCancelChangeListener
void removeCancelChangeListener(ConfigurationChangeListener<CancelExtendedOperationHandlerCfg> listener)
Deregister an existing Cancel Extended Operation Handler configuration change listener.- Parameters:
listener- The Cancel Extended Operation Handler configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Cancel Extended Operation Handler implementation.
Default value:
org.opends.server.extensions.CancelExtendedOperation- Specified by:
getJavaClassin interfaceExtendedOperationHandlerCfg- Returns:
- Returns the value of the "java-class" property.
-
-