Interface AuthenticationPolicyCfg
-
- All Superinterfaces:
Configuration
- All Known Subinterfaces:
LDAPPassThroughAuthenticationPolicyCfg,PasswordPolicyCfg
public interface AuthenticationPolicyCfg extends Configuration
A server-side interface for querying Authentication Policy settings.Authentication Policies define the policies which should be used for authenticating users and managing the password and other account related state.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddChangeListener(ConfigurationChangeListener<AuthenticationPolicyCfg> listener)Register to be notified when this Authentication Policy is changed.Class<? extends AuthenticationPolicyCfg>configurationClass()Gets the configuration class associated with this Authentication Policy.StringgetJavaClass()Gets the "java-class" property.voidremoveChangeListener(ConfigurationChangeListener<AuthenticationPolicyCfg> listener)Deregister an existing Authentication Policy configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
-
-
-
Method Detail
-
configurationClass
Class<? extends AuthenticationPolicyCfg> configurationClass()
Gets the configuration class associated with this Authentication Policy.- Specified by:
configurationClassin interfaceConfiguration- Returns:
- Returns the configuration class associated with this Authentication Policy.
-
addChangeListener
void addChangeListener(ConfigurationChangeListener<AuthenticationPolicyCfg> listener)
Register to be notified when this Authentication Policy is changed.- Parameters:
listener- The Authentication Policy configuration change listener.
-
removeChangeListener
void removeChangeListener(ConfigurationChangeListener<AuthenticationPolicyCfg> listener)
Deregister an existing Authentication Policy configuration change listener.- Parameters:
listener- The Authentication Policy configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class which provides the Authentication Policy implementation.
- Returns:
- Returns the value of the "java-class" property.
-
-