Interface ClientPolicyExecutorProviderFactory
- All Superinterfaces:
ConfiguredProvider
,EnvironmentDependentProviderFactory
,ProviderFactory<ClientPolicyExecutorProvider>
- All Known Implementing Classes:
ClientSecretRotationExecutorFactory
,ConfidentialClientAcceptExecutorFactory
,ConsentRequiredExecutorFactory
,DPoPBindEnforcerExecutorFactory
,FullScopeDisabledExecutorFactory
,HolderOfKeyEnforcerExecutorFactory
,IntentClientBindCheckExecutorFactory
,PKCEEnforcerExecutorFactory
,RegistrationAccessTokenRotationDisabledExecutorFactory
,RejectImplicitGrantExecutorFactory
,RejectRequestExecutorFactory
,RejectResourceOwnerPasswordCredentialsGrantExecutorFactory
,SamlAvoidRedirectBindingExecutorFactory
,SamlSecureClientUrisExecutorFactory
,SamlSignatureEnforcerExecutorFactory
,SecureCibaAuthenticationRequestSigningAlgorithmExecutorFactory
,SecureCibaSessionEnforceExecutorFactory
,SecureCibaSignedAuthenticationRequestExecutorFactory
,SecureClientAuthenticatorExecutorFactory
,SecureClientUrisExecutorFactory
,SecureLogoutExecutorFactory
,SecureParContentsExecutorFactory
,SecureRedirectUrisEnforcerExecutorFactory
,SecureRequestObjectExecutorFactory
,SecureResponseTypeExecutorFactory
,SecureSessionEnforceExecutorFactory
,SecureSigningAlgorithmExecutorFactory
,SecureSigningAlgorithmForSignedJwtExecutorFactory
,SuppressRefreshTokenRotationExecutorFactory
,UseLightweightAccessTokenExecutorFactory
public interface ClientPolicyExecutorProviderFactory
extends ProviderFactory<ClientPolicyExecutorProvider>, ConfiguredProvider, EnvironmentDependentProviderFactory
- Author:
- Takashi Norimatsu
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
isSupported
(Config.Scope config) Check if the provider is supported and should be available based on the provider configuration.Methods inherited from interface org.keycloak.provider.ConfiguredProvider
getConfig, getConfigProperties, getHelpText
Methods inherited from interface org.keycloak.provider.ProviderFactory
close, create, getConfigMetadata, getId, init, order, postInit
-
Method Details
-
isSupported
Description copied from interface:EnvironmentDependentProviderFactory
Check if the provider is supported and should be available based on the provider configuration.- Specified by:
isSupported
in interfaceEnvironmentDependentProviderFactory
- Parameters:
config
- the provider configuration- Returns:
true
if the provider is supported. Otherwise,false
.
-