Interface GetConnectionIdExtendedOperationHandlerCfg
-
- All Superinterfaces:
Configuration
,ExtendedOperationHandlerCfg
public interface GetConnectionIdExtendedOperationHandlerCfg extends ExtendedOperationHandlerCfg
A server-side interface for querying Get Connection ID Extended Operation Handler settings.The Get Connection ID Extended Operation Handler provides a mechanism for clients to obtain the internal connection ID that the server uses to reference their client connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addGetConnectionIdChangeListener(ConfigurationChangeListener<GetConnectionIdExtendedOperationHandlerCfg> listener)
Register to be notified when this Get Connection ID Extended Operation Handler is changed.Class<? extends GetConnectionIdExtendedOperationHandlerCfg>
configurationClass()
Gets the configuration class associated with this Get Connection ID Extended Operation Handler.String
getJavaClass()
Gets the "java-class" property.void
removeGetConnectionIdChangeListener(ConfigurationChangeListener<GetConnectionIdExtendedOperationHandlerCfg> listener)
Deregister an existing Get Connection ID 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 GetConnectionIdExtendedOperationHandlerCfg> configurationClass()
Gets the configuration class associated with this Get Connection ID Extended Operation Handler.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the configuration class associated with this Get Connection ID Extended Operation Handler.
-
addGetConnectionIdChangeListener
void addGetConnectionIdChangeListener(ConfigurationChangeListener<GetConnectionIdExtendedOperationHandlerCfg> listener)
Register to be notified when this Get Connection ID Extended Operation Handler is changed.- Parameters:
listener
- The Get Connection ID Extended Operation Handler configuration change listener.
-
removeGetConnectionIdChangeListener
void removeGetConnectionIdChangeListener(ConfigurationChangeListener<GetConnectionIdExtendedOperationHandlerCfg> listener)
Deregister an existing Get Connection ID Extended Operation Handler configuration change listener.- Parameters:
listener
- The Get Connection ID 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 Get Connection ID Extended Operation Handler implementation.
Default value:
org.opends.server.extensions.GetConnectionIDExtendedOperation
- Specified by:
getJavaClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the value of the "java-class" property.
-
-