Package org.keycloak.authorization.store
Interface ScopeStore
- 
- All Known Implementing Classes:
- JPAScopeStore,- MapScopeStore,- StoreFactoryCacheSession.ScopeCache
 
 public interface ScopeStoreAScopeStoreis responsible to manage the persistence ofScopeinstances.- Author:
- Pedro Igor
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Scopecreate(ResourceServer resourceServer, String name)Creates a newScopeinstance.Scopecreate(ResourceServer resourceServer, String id, String name)Creates a newScopeinstance.voiddelete(RealmModel realm, String id)Deletes a scope from the underlying persistence mechanism.ScopefindById(RealmModel realm, ResourceServer resourceServer, String id)Returns aScopewith the givenidScopefindByName(ResourceServer resourceServer, String name)Returns aScopewith the givennameList<Scope>findByResourceServer(ResourceServer resourceServer)Returns a list ofScopeassociated with theResourceServer.List<Scope>findByResourceServer(ResourceServer resourceServer, Map<Scope.FilterOption,String[]> attributes, Integer firstResult, Integer maxResults)
 
- 
- 
- 
Method Detail- 
createdefault Scope create(ResourceServer resourceServer, String name) Creates a newScopeinstance. The new instance is not necessarily persisted though, which may require a call to the {#save} method to actually make it persistent.- Parameters:
- resourceServer- the resource server to which this scope belongs. Cannot be- null.
- name- the name of the scope
- Returns:
- a new instance of Scope
 
 - 
createScope create(ResourceServer resourceServer, String id, String name) Creates a newScopeinstance. The new instance is not necessarily persisted though, which may require a call to the {#save} method to actually make it persistent.- Parameters:
- resourceServer- the resource server to which this scope belongs. Cannot be- null.
- id- the id of the scope. Is generated randomly when null
- name- the name of the scope
- Returns:
- a new instance of Scope
 
 - 
deletevoid delete(RealmModel realm, String id) Deletes a scope from the underlying persistence mechanism.- Parameters:
- realm- the realm. Cannot be- null.
- id- the id of the scope to delete
 
 - 
findByIdScope findById(RealmModel realm, ResourceServer resourceServer, String id) Returns aScopewith the givenid- Parameters:
- realm- the realm. Cannot be- null.
- resourceServer- the resource server id. Ignored if- null.
- id- the identifier of the scope
- Returns:
- a scope with the given identifier.
 
 - 
findByNameScope findByName(ResourceServer resourceServer, String name) Returns aScopewith the givenname- Parameters:
- resourceServer- the resource server. Cannot be- null.
- name- the name of the scope
- Returns:
- a scope with the given name.
 
 - 
findByResourceServerList<Scope> findByResourceServer(ResourceServer resourceServer) Returns a list ofScopeassociated with theResourceServer.- Parameters:
- resourceServer- the resource server. Cannot be- null.
- Returns:
- a list of scopes that belong to the given resource server
 
 - 
findByResourceServerList<Scope> findByResourceServer(ResourceServer resourceServer, Map<Scope.FilterOption,String[]> attributes, Integer firstResult, Integer maxResults) - Parameters:
- resourceServer- the resource server. Cannot be- null.
- attributes- a map holding the attributes that will be used as a filter; possible filter options are given by- Scope.FilterOption
- firstResult- first result to return. Ignored if negative or- null.
- maxResults- maximum number of results to return. Ignored if negative or- null.
- Returns:
- a list of scopes that belong to the given resource server
- Throws:
- IllegalArgumentException- when there is an unknown attribute in the- attributesmap
 
 
- 
 
-