Interface WhoAmIExtendedOperationHandlerCfg
-
- All Superinterfaces:
Configuration
,ExtendedOperationHandlerCfg
public interface WhoAmIExtendedOperationHandlerCfg extends ExtendedOperationHandlerCfg
A server-side interface for querying Who Am I Extended Operation Handler settings.The Who Am I Extended Operation Handler provides the ability for clients to request their authorization identity using the "Who Am I?" extended operation as defined in RFC 4532.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addWhoAmIChangeListener(ConfigurationChangeListener<WhoAmIExtendedOperationHandlerCfg> listener)
Register to be notified when this Who Am I Extended Operation Handler is changed.Class<? extends WhoAmIExtendedOperationHandlerCfg>
configurationClass()
Gets the configuration class associated with this Who Am I Extended Operation Handler.String
getJavaClass()
Gets the "java-class" property.void
removeWhoAmIChangeListener(ConfigurationChangeListener<WhoAmIExtendedOperationHandlerCfg> listener)
Deregister an existing Who Am I 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 WhoAmIExtendedOperationHandlerCfg> configurationClass()
Gets the configuration class associated with this Who Am I Extended Operation Handler.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the configuration class associated with this Who Am I Extended Operation Handler.
-
addWhoAmIChangeListener
void addWhoAmIChangeListener(ConfigurationChangeListener<WhoAmIExtendedOperationHandlerCfg> listener)
Register to be notified when this Who Am I Extended Operation Handler is changed.- Parameters:
listener
- The Who Am I Extended Operation Handler configuration change listener.
-
removeWhoAmIChangeListener
void removeWhoAmIChangeListener(ConfigurationChangeListener<WhoAmIExtendedOperationHandlerCfg> listener)
Deregister an existing Who Am I Extended Operation Handler configuration change listener.- Parameters:
listener
- The Who Am I 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 Who Am I Extended Operation Handler implementation.
Default value:
org.opends.server.extensions.WhoAmIExtendedOperation
- Specified by:
getJavaClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the value of the "java-class" property.
-
-