Interface AnonymousSaslMechanismHandlerCfg
-
- All Superinterfaces:
Configuration
,SaslMechanismHandlerCfg
public interface AnonymousSaslMechanismHandlerCfg extends SaslMechanismHandlerCfg
A server-side interface for querying Anonymous SASL Mechanism Handler settings.The ANONYMOUS SASL mechanism provides the ability for clients to perform an anonymous bind using a SASL mechanism.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addAnonymousChangeListener(ConfigurationChangeListener<AnonymousSaslMechanismHandlerCfg> listener)
Register to be notified when this Anonymous SASL Mechanism Handler is changed.Class<? extends AnonymousSaslMechanismHandlerCfg>
configurationClass()
Gets the configuration class associated with this Anonymous SASL Mechanism Handler.String
getJavaClass()
Gets the "java-class" property.void
removeAnonymousChangeListener(ConfigurationChangeListener<AnonymousSaslMechanismHandlerCfg> listener)
Deregister an existing Anonymous SASL Mechanism 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.SaslMechanismHandlerCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends AnonymousSaslMechanismHandlerCfg> configurationClass()
Gets the configuration class associated with this Anonymous SASL Mechanism Handler.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceSaslMechanismHandlerCfg
- Returns:
- Returns the configuration class associated with this Anonymous SASL Mechanism Handler.
-
addAnonymousChangeListener
void addAnonymousChangeListener(ConfigurationChangeListener<AnonymousSaslMechanismHandlerCfg> listener)
Register to be notified when this Anonymous SASL Mechanism Handler is changed.- Parameters:
listener
- The Anonymous SASL Mechanism Handler configuration change listener.
-
removeAnonymousChangeListener
void removeAnonymousChangeListener(ConfigurationChangeListener<AnonymousSaslMechanismHandlerCfg> listener)
Deregister an existing Anonymous SASL Mechanism Handler configuration change listener.- Parameters:
listener
- The Anonymous SASL Mechanism Handler configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the SASL mechanism handler implementation.
Default value:
org.opends.server.extensions.AnonymousSASLMechanismHandler
- Specified by:
getJavaClass
in interfaceSaslMechanismHandlerCfg
- Returns:
- Returns the value of the "java-class" property.
-
-