Interface CredentialsChangePolicyProvider
-
- All Known Implementing Classes:
CredentialsChangePolicyImpl
public interface CredentialsChangePolicyProvider
A provider of aCredentialsChangePolicy
instances for each authentication domain.- Author:
- mmoquillon
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static CredentialsChangePolicyProvider
get()
Gets an instance of this provider.CredentialsChangePolicy
getPolicyForDomain(String domainId)
Gets the policy as defined for the specified authentication domain.
-
-
-
Method Detail
-
get
static CredentialsChangePolicyProvider get()
Gets an instance of this provider.- Returns:
- an instance of this provider.
-
getPolicyForDomain
CredentialsChangePolicy getPolicyForDomain(String domainId)
Gets the policy as defined for the specified authentication domain.- Parameters:
domainId
- the unique identifier of an authentication domain.- Returns:
- a
CredentialsChangePolicy
instance.
-
-