Package org.keycloak.services.resource
Interface AccountResourceProviderFactory
- All Superinterfaces:
EnvironmentDependentProviderFactory,org.keycloak.provider.ProviderFactory<AccountResourceProvider>
public interface AccountResourceProviderFactory
extends org.keycloak.provider.ProviderFactory<AccountResourceProvider>, EnvironmentDependentProviderFactory
A factory that creates AccountResourceProvider instances.
-
Method Summary
Modifier and TypeMethodDescriptiondefault booleanisSupported(org.keycloak.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.ProviderFactory
close, create, dependsOn, getConfigMetadata, getId, init, order, postInit
-
Method Details
-
isSupported
default boolean isSupported(org.keycloak.Config.Scope config) Description copied from interface:EnvironmentDependentProviderFactoryCheck if the provider is supported and should be available based on the provider configuration.- Specified by:
isSupportedin interfaceEnvironmentDependentProviderFactory- Parameters:
config- the provider configuration- Returns:
trueif the provider is supported. Otherwise,false.
-