Package org.keycloak.crypto
Interface ContentEncryptionProviderFactory
- 
- All Superinterfaces:
- ProviderFactory<ContentEncryptionProvider>
 - All Known Implementing Classes:
- Aes128CbcHmacSha256ContentEncryptionProviderFactory,- Aes128GcmContentEncryptionProviderFactory,- Aes192CbcHmacSha384ContentEncryptionProviderFactory,- Aes192GcmContentEncryptionProviderFactory,- Aes256CbcHmacSha512ContentEncryptionProviderFactory,- Aes256GcmContentEncryptionProviderFactory
 
 public interface ContentEncryptionProviderFactory extends ProviderFactory<ContentEncryptionProvider> 
- 
- 
Method SummaryAll Methods Instance Methods Default Methods Modifier and Type Method Description default voidclose()This is called when the server shuts down.default voidinit(Config.Scope config)Only called once when the factory is first created.default voidpostInit(KeycloakSessionFactory factory)Called after all provider factories have been initialized- 
Methods inherited from interface org.keycloak.provider.ProviderFactorycreate, getConfigMetadata, getId, order
 
- 
 
- 
- 
- 
Method Detail- 
initdefault void init(Config.Scope config) Description copied from interface:ProviderFactoryOnly called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
- initin interface- ProviderFactory<ContentEncryptionProvider>
 
 - 
postInitdefault void postInit(KeycloakSessionFactory factory) Description copied from interface:ProviderFactoryCalled after all provider factories have been initialized- Specified by:
- postInitin interface- ProviderFactory<ContentEncryptionProvider>
 
 - 
closedefault void close() Description copied from interface:ProviderFactoryThis is called when the server shuts down.- Specified by:
- closein interface- ProviderFactory<ContentEncryptionProvider>
 
 
- 
 
-