Package org.keycloak.authorization.store
Interface StoreFactory
- All Superinterfaces:
Provider
- All Known Subinterfaces:
CachedStoreFactoryProvider
- All Known Implementing Classes:
JPAStoreFactory
,StoreFactoryCacheSession
A factory for the different types of storages that manage the persistence of the domain model types.
Implementations of this interface are usually related with the creation of those storage types accordingly with a specific persistence mechanism such as relational and NoSQL databases, filesystem, etc.
- Author:
- Pedro Igor
-
Method Summary
Modifier and TypeMethodDescriptionReturns aPermissionTicketStore
.Returns aPolicyStore
.Returns aResourceServerStore
.Returns aResourceStore
.Returns aScopeStore
.boolean
Indicates if instances returned from storage are read-only.void
setReadOnly
(boolean readOnly) Sets whether or not changes to instances returned from this factory are supported.
-
Method Details
-
getResourceStore
ResourceStore getResourceStore()Returns aResourceStore
.- Returns:
- the resource store
-
getResourceServerStore
ResourceServerStore getResourceServerStore()Returns aResourceServerStore
.- Returns:
- the resource server store
-
getScopeStore
ScopeStore getScopeStore()Returns aScopeStore
.- Returns:
- the scope store
-
getPolicyStore
PolicyStore getPolicyStore()Returns aPolicyStore
.- Returns:
- the policy store
-
getPermissionTicketStore
PermissionTicketStore getPermissionTicketStore()Returns aPermissionTicketStore
.- Returns:
- the permission ticket store
-
setReadOnly
void setReadOnly(boolean readOnly) Sets whether or not changes to instances returned from this factory are supported. Once marked as read-only, any attempt to change state will throw anIllegalStateException
.- Parameters:
readOnly
- if true, changes are not supported
-
isReadOnly
boolean isReadOnly()Indicates if instances returned from storage are read-only.- Returns:
- if true, instances only support reads.
-