Class StoreFactoryCacheSession.ResourceCache
java.lang.Object
org.keycloak.models.cache.infinispan.authorization.StoreFactoryCacheSession.ResourceCache
- All Implemented Interfaces:
ResourceStore
- Enclosing class:
- StoreFactoryCacheSession
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreate
(ResourceServer resourceServer, String id, String name, String owner) Creates aResource
instance backed by this persistent storage implementation.void
Removes aResource
instance, with the givenid
from the persistent storage.find
(ResourceServer resourceServer, Map<Resource.FilterOption, String[]> attributes, Integer firstResult, Integer maxResults) Finds allResource
instances associated with a given resource server.findById
(ResourceServer resourceServer, String id) Returns aResource
instance based on its identifier.findByName
(ResourceServer resourceServer, String name, String ownerId) Find aResource
by its name where the owner is the givenownerId
.findByOwner
(ResourceServer resourceServer, String ownerId) Finds allResource
instances with the givenownerId
.void
findByOwner
(ResourceServer resourceServer, String ownerId, Consumer<Resource> consumer) Effectively the same method asResourceStore.findByOwner(ResourceServer, String)
, however in the end theconsumer
is fed with the result.findByResourceServer
(ResourceServer resourceServer) Finds allResource
instances associated with a given resource server.findByScopes
(ResourceServer resourceServer, Set<Scope> scopes) Finds allResource
associated with a given scope.void
findByScopes
(ResourceServer resourceServer, Set<Scope> scopes, Consumer<Resource> consumer) findByType
(ResourceServer resourceServer, String type) Finds allResource
associated with theResourceServer
with the given type.void
findByType
(ResourceServer resourceServer, String type, String owner, Consumer<Resource> consumer) Finds allResource
with the given type.void
findByType
(ResourceServer resourceServer, String type, Consumer<Resource> consumer) Finds allResource
fromResourceServer
with the given type.void
findByTypeInstance
(ResourceServer resourceServer, String type, Consumer<Resource> consumer) Finds allResource
by type where client represented by theresourceServer
is not the ownerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.keycloak.authorization.store.ResourceStore
create, findByName
-
Constructor Details
-
ResourceCache
protected ResourceCache()
-
-
Method Details
-
create
Description copied from interface:ResourceStore
Creates a
Resource
instance backed by this persistent storage implementation.- Specified by:
create
in interfaceResourceStore
- Parameters:
resourceServer
- the resource server to where the given resource belongs to. Cannot benull
.id
- the id of this resource. It must be unique. Will be randomly generated if null.name
- the name of this resource. It must be unique.owner
- the owner of this resource or null if the resource server is the owner- Returns:
- an instance backed by the underlying storage implementation
-
delete
Description copied from interface:ResourceStore
Removes aResource
instance, with the givenid
from the persistent storage.- Specified by:
delete
in interfaceResourceStore
- Parameters:
id
- the identifier of an existing resource instance
-
findById
Description copied from interface:ResourceStore
Returns aResource
instance based on its identifier.- Specified by:
findById
in interfaceResourceStore
- Parameters:
resourceServer
- the resource server. Ignored ifnull
id
- the identifier of an existing resource instance- Returns:
- the resource instance with the given identifier or null if no instance was found
-
findByName
Description copied from interface:ResourceStore
Find aResource
by its name where the owner is the givenownerId
.- Specified by:
findByName
in interfaceResourceStore
- Parameters:
resourceServer
- the identifier of the resource server. Searches for resources without a resourceServer ifnull
.name
- the name of the resourceownerId
- the owner id- Returns:
- a resource with the given name
-
findByOwner
Description copied from interface:ResourceStore
Finds allResource
instances with the givenownerId
.- Specified by:
findByOwner
in interfaceResourceStore
- Parameters:
resourceServer
- resource server. Ignored ifnull
ownerId
- the identifier of the owner- Returns:
- a list with all resource instances owned by the given owner
-
findByOwner
Description copied from interface:ResourceStore
Effectively the same method asResourceStore.findByOwner(ResourceServer, String)
, however in the end theconsumer
is fed with the result.- Specified by:
findByOwner
in interfaceResourceStore
-
findByResourceServer
Description copied from interface:ResourceStore
Finds allResource
instances associated with a given resource server.- Specified by:
findByResourceServer
in interfaceResourceStore
- Parameters:
resourceServer
- the identifier of the resource server. Searches for resources without a resourceServer ifnull
.- Returns:
- a list with all resources associated with the given resource server
-
find
public List<Resource> find(ResourceServer resourceServer, Map<Resource.FilterOption, String[]> attributes, Integer firstResult, Integer maxResults) Description copied from interface:ResourceStore
Finds allResource
instances associated with a given resource server.- Specified by:
find
in interfaceResourceStore
- Parameters:
resourceServer
- the identifier of the resource server. Ignored ifnull
.attributes
- a map holding the attributes that will be used as a filter; possible filter options are given byResource.FilterOption
firstResult
- first result to return. Ignored if negative ornull
.maxResults
- maximum number of results to return. Ignored if negative ornull
.- Returns:
- a list with all resources associated with the given resource server
-
findByScopes
Description copied from interface:ResourceStore
Finds allResource
associated with a given scope.- Specified by:
findByScopes
in interfaceResourceStore
- Parameters:
resourceServer
- the resource server. Searches for resources without a resourceServer ifnull
.scopes
- one or more scope identifiers- Returns:
- a list of resources associated with the given scope(s)
-
findByScopes
public void findByScopes(ResourceServer resourceServer, Set<Scope> scopes, Consumer<Resource> consumer) - Specified by:
findByScopes
in interfaceResourceStore
-
findByType
Description copied from interface:ResourceStore
Finds allResource
associated with theResourceServer
with the given type.- Specified by:
findByType
in interfaceResourceStore
- Parameters:
resourceServer
- the resource server. Searches for resources without a resourceServer ifnull
.type
- the type of the resource- Returns:
- a list of resources with the given type
-
findByType
Description copied from interface:ResourceStore
Finds allResource
fromResourceServer
with the given type.- Specified by:
findByType
in interfaceResourceStore
- Parameters:
resourceServer
- the resource server id. Searches for resources without a resourceServer ifnull
.type
- the type of the resourceconsumer
- the result consumer
-
findByType
public void findByType(ResourceServer resourceServer, String type, String owner, Consumer<Resource> consumer) Description copied from interface:ResourceStore
Finds allResource
with the given type.- Specified by:
findByType
in interfaceResourceStore
- Parameters:
resourceServer
- the resource server id. Searches for resources without a resourceServer ifnull
.type
- the type of the resourceowner
- the resource owner or null for any resource with a given typeconsumer
- the result consumer
-
findByTypeInstance
public void findByTypeInstance(ResourceServer resourceServer, String type, Consumer<Resource> consumer) Description copied from interface:ResourceStore
Finds allResource
by type where client represented by theresourceServer
is not the owner- Specified by:
findByTypeInstance
in interfaceResourceStore
- Parameters:
resourceServer
- the resourceServer. Searches for resources without a resourceServer ifnull
.type
- searched typeconsumer
- a consumer that will be fed with the resulting resources
-