Class JPAScopeStore
- java.lang.Object
-
- org.keycloak.authorization.jpa.store.JPAScopeStore
-
- All Implemented Interfaces:
ScopeStore
public class JPAScopeStore extends Object implements ScopeStore
- Author:
- Pedro Igor
-
-
Constructor Summary
Constructors Constructor Description JPAScopeStore(javax.persistence.EntityManager entityManager, AuthorizationProvider provider)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Scope
create(ResourceServer resourceServer, String name)
Creates a newScope
instance.Scope
create(ResourceServer resourceServer, String id, String name)
Creates a newScope
instance.void
delete(String id)
Deletes a scope from the underlying persistence mechanism.Scope
findById(ResourceServer resourceServer, String id)
Returns aScope
with the givenid
Scope
findByName(ResourceServer resourceServer, String name)
Returns aScope
with the givenname
List<Scope>
findByResourceServer(ResourceServer resourceServer)
List<Scope>
findByResourceServer(ResourceServer resourceServer, Map<Scope.FilterOption,String[]> attributes, Integer firstResult, Integer maxResults)
-
-
-
Constructor Detail
-
JPAScopeStore
public JPAScopeStore(javax.persistence.EntityManager entityManager, AuthorizationProvider provider)
-
-
Method Detail
-
create
public Scope create(ResourceServer resourceServer, String name)
Description copied from interface:ScopeStore
Creates a newScope
instance. The new instance is not necessarily persisted though, which may require a call to the {#save} method to actually make it persistent.- Specified by:
create
in interfaceScopeStore
- Parameters:
resourceServer
- the resource server to which this scope belongsname
- the name of the scope- Returns:
- a new instance of
Scope
-
create
public Scope create(ResourceServer resourceServer, String id, String name)
Description copied from interface:ScopeStore
Creates a newScope
instance. The new instance is not necessarily persisted though, which may require a call to the {#save} method to actually make it persistent.- Specified by:
create
in interfaceScopeStore
- Parameters:
resourceServer
- the resource server to which this scope belongsid
- the id of the scope. Is generated randomly when nullname
- the name of the scope- Returns:
- a new instance of
Scope
-
delete
public void delete(String id)
Description copied from interface:ScopeStore
Deletes a scope from the underlying persistence mechanism.- Specified by:
delete
in interfaceScopeStore
- Parameters:
id
- the id of the scope to delete
-
findById
public Scope findById(ResourceServer resourceServer, String id)
Description copied from interface:ScopeStore
Returns aScope
with the givenid
- Specified by:
findById
in interfaceScopeStore
- Parameters:
resourceServer
- the resource server idid
- the identifier of the scope- Returns:
- a scope with the given identifier.
-
findByName
public Scope findByName(ResourceServer resourceServer, String name)
Description copied from interface:ScopeStore
Returns aScope
with the givenname
- Specified by:
findByName
in interfaceScopeStore
- Parameters:
resourceServer
- the resource servername
- the name of the scope- Returns:
- a scope with the given name.
-
findByResourceServer
public List<Scope> findByResourceServer(ResourceServer resourceServer)
Description copied from interface:ScopeStore
- Specified by:
findByResourceServer
in interfaceScopeStore
- Parameters:
resourceServer
- the identifier of a resource server- Returns:
- a list of scopes that belong to the given resource server
-
findByResourceServer
public List<Scope> findByResourceServer(ResourceServer resourceServer, Map<Scope.FilterOption,String[]> attributes, Integer firstResult, Integer maxResults)
Description copied from interface:ScopeStore
- Specified by:
findByResourceServer
in interfaceScopeStore
- Parameters:
resourceServer
- the resource serverattributes
- a map holding the attributes that will be used as a filter; possible filter options are given byScope.FilterOption
firstResult
- first result to return. Ignored if negative ornull
.maxResults
- maximum number of results to return. Ignored if negative ornull
.- Returns:
- a list of scopes that belong to the given resource server
-
-