Package org.keycloak.authorization.store
Interface StoreFactory
-
- All Superinterfaces:
Provider
- All Known Subinterfaces:
CachedStoreFactoryProvider
- All Known Implementing Classes:
JPAStoreFactory
,MapAuthorizationStore
,StoreFactoryCacheSession
public interface StoreFactory extends Provider
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PermissionTicketStore
getPermissionTicketStore()
Returns aPermissionTicketStore
.PolicyStore
getPolicyStore()
Returns aPolicyStore
.ResourceServerStore
getResourceServerStore()
Returns aResourceServerStore
.ResourceStore
getResourceStore()
Returns aResourceStore
.ScopeStore
getScopeStore()
Returns aScopeStore
.boolean
isReadOnly()
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 Detail
-
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.
-
-