Merge pull request #54 from stianst/master
Fix garbage collections to garbage collected
This commit is contained in:
commit
3f969649c7
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ You may be thinking that the `UserStorageProvider` interface is pretty sparse?
|
|||
there are other mix-in interfaces your provider class may implement to support the meat of user integration.
|
||||
|
||||
`UserStorageProvider` instances are created once per transaction. When the transaction is complete, the
|
||||
`UserStorageProvider.close()` method is invoked and the instance is then garbage collections. Instances are created
|
||||
`UserStorageProvider.close()` method is invoked and the instance is then garbage collected. Instances are created
|
||||
by provider factories. Provider factories implement the `org.keycloak.storage.UserStorageProviderFactory` interface.
|
||||
|
||||
[source,java]
|
||||
|
|
Loading…
Reference in a new issue