Package org.keycloak.models.jpa
Class JpaRealmProvider
- java.lang.Object
-
- org.keycloak.models.jpa.JpaRealmProvider
-
- All Implemented Interfaces:
ClientProvider,ClientScopeProvider,DeploymentStateProvider,GroupProvider,RealmProvider,RoleProvider,Provider,ClientLookupProvider,ClientScopeLookupProvider,GroupLookupProvider,RoleLookupProvider
public class JpaRealmProvider extends Object implements RealmProvider, ClientProvider, ClientScopeProvider, GroupProvider, RoleProvider, DeploymentStateProvider
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description JpaRealmProvider(KeycloakSession session, javax.persistence.EntityManager em, Set<String> clientSearchableAttributes, Set<String> groupSearchableAttributes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClientModeladdClient(RealmModel realm, String clientId)Adds a client with givenclientIdto the given realm.ClientModeladdClient(RealmModel realm, String id, String clientId)Adds a client with given internal ID andclientIdto the given realm.RoleModeladdClientRole(ClientModel client, String name)Adds a client role with givennameto the given client.RoleModeladdClientRole(ClientModel client, String id, String name)Adds a client role with given internal ID andnameto the given client.ClientScopeModeladdClientScope(RealmModel realm, String id, String name)Creates new client scope with given internal ID andnameto the given realm.voidaddClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)Assign clientScopes to the client.RoleModeladdRealmRole(RealmModel realm, String name)Adds a realm role with givennameto the given realm.RoleModeladdRealmRole(RealmModel realm, String id, String name)Adds a realm role with given internal ID andnameto the given realm.voidaddTopLevelGroup(RealmModel realm, GroupModel subGroup)Removes parent group for the given group in the given realm.voidclose()GroupModelcreateGroup(RealmModel realm, String id, String name, GroupModel toParent)Creates a new group with the given name, id, name and parent to the given realm.RealmModelcreateRealm(String name)Creates new realm with the given name.RealmModelcreateRealm(String id, String name)Created new realm with given ID and name.booleandeleteLocalizationText(RealmModel realm, String locale, String key)booleandeleteLocalizationTextsByLocale(RealmModel realm, String locale)Map<ClientModel,Set<String>>getAllRedirectUrisOfEnabledClients(RealmModel realm)Returns a map of (rootUrl, {validRedirectUris}) for all enabled clients.Stream<ClientModel>getAlwaysDisplayInConsoleClientsStream(RealmModel realm)Returns a stream of clients that are expected to always show up in account console.ClientModelgetClientByClientId(RealmModel realm, String clientId)Exact search for a client by its public client identifier.ClientModelgetClientById(RealmModel realm, String id)Exact search for a client by its internal ID.RoleModelgetClientRole(ClientModel client, String name)Exact search for a client role by given name.Stream<RoleModel>getClientRolesStream(ClientModel client, Integer first, Integer max)Returns the client roles of the given client.ClientScopeModelgetClientScopeById(RealmModel realm, String id)Exact search for a client scope by its internal ID..Map<String,ClientScopeModel>getClientScopes(RealmModel realm, ClientModel client, boolean defaultScope)Return all default scopes (ifdefaultScopeistrue) or all optional scopes (ifdefaultScopeisfalse) linked with the clientStream<ClientScopeModel>getClientScopesStream(RealmModel realm)Returns all the client scopes of the given realm as a stream.longgetClientsCount(RealmModel realm)Returns number of clients in the given realmSet<String>getClientSearchableAttributes()Stream<ClientModel>getClientsStream(RealmModel realm)Returns all the clients of the given realm as a stream.Stream<ClientModel>getClientsStream(RealmModel realm, Integer firstResult, Integer maxResults)Returns the clients of the given realm as a stream.GroupModelgetGroupById(RealmModel realm, String id)Returns a group from the given realm with the corresponding idStream<GroupModel>getGroupsByRoleStream(RealmModel realm, RoleModel role, Integer firstResult, Integer maxResults)Returns groups with the given role in the given realm.LonggetGroupsCount(RealmModel realm, Boolean onlyTopGroups)Returns a number of groups/top level groups (i.e.LonggetGroupsCount(RealmModel realm, Stream<String> ids, String search)Returns a number of groups that contains the search string in the nameLonggetGroupsCountByNameContaining(RealmModel realm, String search)Returns the number of top level groups containing groups with the given string in name for the given realm.Stream<GroupModel>getGroupsStream(RealmModel realm)Returns groups for the given realm.Stream<GroupModel>getGroupsStream(RealmModel realm, Stream<String> ids)Returns a stream of groups with given ids.Stream<GroupModel>getGroupsStream(RealmModel realm, Stream<String> ids, Integer first, Integer max)Returns a paginated stream of groups with given ids.Stream<GroupModel>getGroupsStream(RealmModel realm, Stream<String> ids, String search, Integer first, Integer max)Returns a paginated stream of groups with given ids and given search value in group names.StringgetLocalizationTextsById(RealmModel realm, String locale, String key)MigrationModelgetMigrationModel()RealmModelgetRealm(String id)Exact search for a realm by its internal ID.RealmModelgetRealmByName(String name)Exact search for a realm by its name.RoleModelgetRealmRole(RealmModel realm, String name)Exact search for a role by given name.Stream<RoleModel>getRealmRolesStream(RealmModel realm)Returns all the realm roles of the given realm as a stream.Stream<RoleModel>getRealmRolesStream(RealmModel realm, Integer first, Integer max)Returns the realm roles of the given realm as a stream.Stream<RealmModel>getRealmsStream()Returns realms as a stream.Stream<RealmModel>getRealmsWithProviderTypeStream(Class<?> providerType)Returns stream of realms which has component with the given provider type.RoleModelgetRoleById(RealmModel realm, String id)Exact search for a role by its internal ID..protected Stream<RoleModel>getRolesStream(javax.persistence.TypedQuery<RoleEntity> query, RealmModel realm, Integer first, Integer max)Stream<RoleModel>getRolesStream(RealmModel realm, Stream<String> ids, String search, Integer first, Integer max)Returns a paginated stream of roles with given ids and given search value in role names.Stream<GroupModel>getTopLevelGroupsStream(RealmModel realm)Returns all top level groups (i.e.Stream<GroupModel>getTopLevelGroupsStream(RealmModel realm, Integer first, Integer max)Returns top level groups (i.e.voidmoveGroup(RealmModel realm, GroupModel group, GroupModel toParent)This method is used for moving groups in group structure, for example: making an existing child group child group of some other group, setting a top level group (i.e.voidpreRemove(RealmModel realm, RoleModel role)booleanremoveClient(RealmModel realm, String id)Removes given client from the given realm.voidremoveClients(RealmModel realm)Removes all clients from the given realm.booleanremoveClientScope(RealmModel realm, String id)Removes client scope from the given realm.voidremoveClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)Unassign clientScope from the client.voidremoveClientScopes(RealmModel realm)Removes all client scopes from the given realm.voidremoveExpiredClientInitialAccess()Removes all expired client initial accesses from all realms.booleanremoveGroup(RealmModel realm, GroupModel group)Removes the given group for the given realm.booleanremoveRealm(String id)Removes realm with the given id.booleanremoveRole(RoleModel role)Removes given realm role from the given realm.voidremoveRoles(ClientModel client)Removes all roles from the given client.voidremoveRoles(RealmModel realm)Removes all roles from the given realm.RoleContainerModel.RoleRemovedEventroleRemovedEvent(RoleModel role)voidsaveLocalizationText(RealmModel realm, String locale, String key, String text)voidsaveLocalizationTexts(RealmModel realm, String locale, Map<String,String> localizationTexts)Stream<ClientModel>searchClientsByAttributes(RealmModel realm, Map<String,String> attributes, Integer firstResult, Integer maxResults)Stream<ClientModel>searchClientsByClientIdStream(RealmModel realm, String clientId, Integer firstResult, Integer maxResults)Case-insensitive search for clients that contain the given string in their public client identifier.Stream<RoleModel>searchForClientRolesStream(ClientModel client, String search, Integer first, Integer max)Case-insensitive search for client roles that contain the given string in their name or description.Stream<GroupModel>searchForGroupByNameStream(RealmModel realm, String search, Boolean exact, Integer first, Integer max)Returns the group hierarchy with the given string in name for the given realm.protected Stream<RoleModel>searchForRoles(javax.persistence.TypedQuery<RoleEntity> query, RealmModel realm, String search, Integer first, Integer max)Stream<RoleModel>searchForRolesStream(RealmModel realm, String search, Integer first, Integer max)Case-insensitive search for roles that contain the given string in their name or description.Stream<GroupModel>searchGroupsByAttributes(RealmModel realm, Map<String,String> attributes, Integer firstResult, Integer maxResults)Returns the groups filtered by attribute names and attribute values for the given realm.booleanupdateLocalizationText(RealmModel realm, String locale, String key, String text)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.models.ClientScopeProvider
addClientScope
-
Methods inherited from interface org.keycloak.storage.group.GroupLookupProvider
searchForGroupByNameStream
-
Methods inherited from interface org.keycloak.models.RealmProvider
addClientRole, addClientRole, createClientInitialAccessModel, createGroup, createGroup, createGroup, decreaseRemainingCount, getClientInitialAccessModel, getClientRole, getClientRoles, getClientRoles, getClientScopeById, getRealmRoles, getRoleById, listClientInitialAccessStream, removeClientInitialAccessModel, removeRole, searchForClientRoles, searchForRoles
-
Methods inherited from interface org.keycloak.models.RoleProvider
getClientRolesStream
-
-
-
-
Constructor Detail
-
JpaRealmProvider
public JpaRealmProvider(KeycloakSession session, javax.persistence.EntityManager em, Set<String> clientSearchableAttributes, Set<String> groupSearchableAttributes)
-
-
Method Detail
-
getMigrationModel
public MigrationModel getMigrationModel()
- Specified by:
getMigrationModelin interfaceDeploymentStateProvider
-
createRealm
public RealmModel createRealm(String name)
Description copied from interface:RealmProviderCreates new realm with the given name. The internal ID will be generated automatically.- Specified by:
createRealmin interfaceRealmProvider- Parameters:
name- String name of the realm- Returns:
- Model of the created realm.
-
createRealm
public RealmModel createRealm(String id, String name)
Description copied from interface:RealmProviderCreated new realm with given ID and name.- Specified by:
createRealmin interfaceRealmProvider- Parameters:
id- Internal ID of the realm ornullif one is to be created by the underlying store. If the store expects the ID to have a certain format (for exampleUUID) and the supplied ID doesn't follow the expected format, the store may replace theidwith a new one at its own discretion.name- String name of the realm- Returns:
- Model of the created realm.
-
getRealm
public RealmModel getRealm(String id)
Description copied from interface:RealmProviderExact search for a realm by its internal ID.- Specified by:
getRealmin interfaceRealmProvider- Parameters:
id- Internal ID of the realm.- Returns:
- Model of the realm
-
getRealmsWithProviderTypeStream
public Stream<RealmModel> getRealmsWithProviderTypeStream(Class<?> providerType)
Description copied from interface:RealmProviderReturns stream of realms which has component with the given provider type.- Specified by:
getRealmsWithProviderTypeStreamin interfaceRealmProvider- Parameters:
providerType-Class<?>Type of the provider.- Returns:
- Stream of
RealmModel. Never returnsnull.
-
getRealmsStream
public Stream<RealmModel> getRealmsStream()
Description copied from interface:RealmProviderReturns realms as a stream.- Specified by:
getRealmsStreamin interfaceRealmProvider- Returns:
- Stream of
RealmModel. Never returnsnull.
-
getRealmByName
public RealmModel getRealmByName(String name)
Description copied from interface:RealmProviderExact search for a realm by its name.- Specified by:
getRealmByNamein interfaceRealmProvider- Parameters:
name- String name of the realm- Returns:
- Model of the realm
-
removeRealm
public boolean removeRealm(String id)
Description copied from interface:RealmProviderRemoves realm with the given id.- Specified by:
removeRealmin interfaceRealmProvider- Parameters:
id- of realm.- Returns:
trueif the realm was successfully removed.
-
addRealmRole
public RoleModel addRealmRole(RealmModel realm, String name)
Description copied from interface:RoleProviderAdds a realm role with givennameto the given realm. The internal ID of the role will be created automatically.- Specified by:
addRealmRolein interfaceRealmProvider- Specified by:
addRealmRolein interfaceRoleProvider- Parameters:
realm- Realm owning this role.name- String name of the role.- Returns:
- Model of the created role.
-
addRealmRole
public RoleModel addRealmRole(RealmModel realm, String id, String name)
Description copied from interface:RoleProviderAdds a realm role with given internal ID andnameto the given realm.- Specified by:
addRealmRolein interfaceRealmProvider- Specified by:
addRealmRolein interfaceRoleProvider- Parameters:
realm- Realm owning this role.id- Internal ID of the role ornullif one is to be created by the underlying storename- String name of the role.- Returns:
- Model of the created client.
-
getRealmRole
public RoleModel getRealmRole(RealmModel realm, String name)
Description copied from interface:RoleLookupProviderExact search for a role by given name.- Specified by:
getRealmRolein interfaceRealmProvider- Specified by:
getRealmRolein interfaceRoleLookupProvider- Parameters:
realm- Realm.name- String name of the role.- Returns:
- Model of the role, or
nullif no role is found.
-
addClientRole
public RoleModel addClientRole(ClientModel client, String name)
Description copied from interface:RoleProviderAdds a client role with givennameto the given client. The internal ID of the role will be created automatically.- Specified by:
addClientRolein interfaceRoleProvider- Parameters:
client- Client owning this role.name- String name of the role.- Returns:
- Model of the created role.
-
addClientRole
public RoleModel addClientRole(ClientModel client, String id, String name)
Description copied from interface:RoleProviderAdds a client role with given internal ID andnameto the given client.- Specified by:
addClientRolein interfaceRoleProvider- Parameters:
client- Client owning this role.id- Internal ID of the client role ornullif one is to be created by the underlying store.name- String name of the role.- Returns:
- Model of the created role.
-
getRealmRolesStream
public Stream<RoleModel> getRealmRolesStream(RealmModel realm)
Description copied from interface:RoleProviderReturns all the realm roles of the given realm as a stream. Effectively the same as the callgetRealmRolesStream(realm, null, null).- Specified by:
getRealmRolesStreamin interfaceRoleProvider- Parameters:
realm- Realm.- Returns:
- Stream of the roles. Never returns
null.
-
getClientRole
public RoleModel getClientRole(ClientModel client, String name)
Description copied from interface:RoleLookupProviderExact search for a client role by given name.- Specified by:
getClientRolein interfaceRoleLookupProvider- Parameters:
client- Client.name- String name of the role.- Returns:
- Model of the role, or
nullif no role is found.
-
getAllRedirectUrisOfEnabledClients
public Map<ClientModel,Set<String>> getAllRedirectUrisOfEnabledClients(RealmModel realm)
Description copied from interface:ClientProviderReturns a map of (rootUrl, {validRedirectUris}) for all enabled clients.- Specified by:
getAllRedirectUrisOfEnabledClientsin interfaceClientProvider- Returns:
-
getRealmRolesStream
public Stream<RoleModel> getRealmRolesStream(RealmModel realm, Integer first, Integer max)
Description copied from interface:RoleProviderReturns the realm roles of the given realm as a stream.- Specified by:
getRealmRolesStreamin interfaceRoleProvider- Parameters:
realm- Realm.first- First result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of the roles. Never returns
null.
-
getRolesStream
public Stream<RoleModel> getRolesStream(RealmModel realm, Stream<String> ids, String search, Integer first, Integer max)
Description copied from interface:RoleProviderReturns a paginated stream of roles with given ids and given search value in role names.- Specified by:
getRolesStreamin interfaceRoleProvider- Parameters:
realm- Realm. Cannot benull.ids- Stream of ids. Returns emptyStreamwhennull.search- Case-insensitive string to search by role's name or description. Ignored ifnull.first- Index of the first result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of desired roles. Never returns
null.
-
getClientRolesStream
public Stream<RoleModel> getClientRolesStream(ClientModel client, Integer first, Integer max)
Description copied from interface:RoleProviderReturns the client roles of the given client.- Specified by:
getClientRolesStreamin interfaceRoleProvider- Parameters:
client- Client.first- First result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of the roles. Never returns
null.
-
getRolesStream
protected Stream<RoleModel> getRolesStream(javax.persistence.TypedQuery<RoleEntity> query, RealmModel realm, Integer first, Integer max)
-
searchForClientRolesStream
public Stream<RoleModel> searchForClientRolesStream(ClientModel client, String search, Integer first, Integer max)
Description copied from interface:RoleLookupProviderCase-insensitive search for client roles that contain the given string in their name or description.- Specified by:
searchForClientRolesStreamin interfaceRoleLookupProvider- Parameters:
client- Client.search- String to search by role's name or description.first- First result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of the client roles their name or description contains given search string.
Never returns
null.
-
searchForRolesStream
public Stream<RoleModel> searchForRolesStream(RealmModel realm, String search, Integer first, Integer max)
Description copied from interface:RoleLookupProviderCase-insensitive search for roles that contain the given string in their name or description.- Specified by:
searchForRolesStreamin interfaceRoleLookupProvider- Parameters:
realm- Realm.search- Searched substring of the role's name or description.first- First result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of the realm roles their name or description contains given search string.
Never returns
null.
-
searchForRoles
protected Stream<RoleModel> searchForRoles(javax.persistence.TypedQuery<RoleEntity> query, RealmModel realm, String search, Integer first, Integer max)
-
removeRole
public boolean removeRole(RoleModel role)
Description copied from interface:RoleProviderRemoves given realm role from the given realm.- Specified by:
removeRolein interfaceRoleProvider- Parameters:
role- Role to be removed.- Returns:
trueif the role existed and has been removed,falseotherwise.
-
roleRemovedEvent
public RoleContainerModel.RoleRemovedEvent roleRemovedEvent(RoleModel role)
-
removeRoles
public void removeRoles(RealmModel realm)
Description copied from interface:RoleProviderRemoves all roles from the given realm.- Specified by:
removeRolesin interfaceRoleProvider- Parameters:
realm- Realm.
-
removeRoles
public void removeRoles(ClientModel client)
Description copied from interface:RoleProviderRemoves all roles from the given client.- Specified by:
removeRolesin interfaceRoleProvider- Parameters:
client- Client.
-
getRoleById
public RoleModel getRoleById(RealmModel realm, String id)
Description copied from interface:RoleLookupProviderExact search for a role by its internal ID..- Specified by:
getRoleByIdin interfaceRoleLookupProvider- Parameters:
realm- Realm.id- Internal ID of the role.- Returns:
- Model of the role.
-
getGroupById
public GroupModel getGroupById(RealmModel realm, String id)
Description copied from interface:GroupLookupProviderReturns a group from the given realm with the corresponding id- Specified by:
getGroupByIdin interfaceGroupLookupProvider- Specified by:
getGroupByIdin interfaceRealmProvider- Parameters:
realm- Realm.id- Id.- Returns:
- GroupModel with the corresponding id.
-
moveGroup
public void moveGroup(RealmModel realm, GroupModel group, GroupModel toParent)
Description copied from interface:GroupProviderThis method is used for moving groups in group structure, for example:- making an existing child group child group of some other group,
- setting a top level group (i.e. group without parent group) child of some group,
- making a child group top level group (i.e. removing its parent group).
- Specified by:
moveGroupin interfaceGroupProvider- Specified by:
moveGroupin interfaceRealmProvider- Parameters:
realm- Realm owning this group.group- Group to update.toParent- New parent group, ornullif we are moving the group to top level group.
-
getGroupsStream
public Stream<GroupModel> getGroupsStream(RealmModel realm)
Description copied from interface:GroupProviderReturns groups for the given realm.- Specified by:
getGroupsStreamin interfaceGroupProvider- Parameters:
realm- Realm.- Returns:
- Stream of groups in the Realm.
-
getGroupsStream
public Stream<GroupModel> getGroupsStream(RealmModel realm, Stream<String> ids, String search, Integer first, Integer max)
Description copied from interface:GroupProviderReturns a paginated stream of groups with given ids and given search value in group names.- Specified by:
getGroupsStreamin interfaceGroupProvider- Parameters:
realm- Realm.ids- Stream of ids.search- Case insensitive string which will be searched for. Ignored if null.first- Index of the first result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of desired groups. Never returns
null.
-
getGroupsStream
public Stream<GroupModel> getGroupsStream(RealmModel realm, Stream<String> ids, Integer first, Integer max)
Description copied from interface:GroupProviderReturns a paginated stream of groups with given ids. Effectively the same asgetGroupsStream(realm, ids, null, first, max).- Specified by:
getGroupsStreamin interfaceGroupProvider- Parameters:
realm- Realm.ids- Stream of ids.first- Index of the first result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of GroupModels with the specified ids
-
getGroupsStream
public Stream<GroupModel> getGroupsStream(RealmModel realm, Stream<String> ids)
Description copied from interface:GroupProviderReturns a stream of groups with given ids. Effectively the same asgetGroupsStream(realm, ids, null, null, null).- Specified by:
getGroupsStreamin interfaceGroupProvider- Parameters:
realm- Realm.ids- Stream of ids.- Returns:
- Stream of GroupModels with the specified ids
-
getGroupsCount
public Long getGroupsCount(RealmModel realm, Stream<String> ids, String search)
Description copied from interface:GroupProviderReturns a number of groups that contains the search string in the name- Specified by:
getGroupsCountin interfaceGroupProvider- Parameters:
realm- Realm.ids- List of ids.search- Case insensitive string which will be searched for. Ignored if null.- Returns:
- Number of groups.
-
getGroupsCount
public Long getGroupsCount(RealmModel realm, Boolean onlyTopGroups)
Description copied from interface:GroupProviderReturns a number of groups/top level groups (i.e. groups without parent group) for the given realm.- Specified by:
getGroupsCountin interfaceGroupProvider- Specified by:
getGroupsCountin interfaceRealmProvider- Parameters:
realm- Realm.onlyTopGroups- When true the function returns a count of top level groups only.- Returns:
- Number of groups/top level groups.
-
getClientsCount
public long getClientsCount(RealmModel realm)
Description copied from interface:ClientProviderReturns number of clients in the given realm- Specified by:
getClientsCountin interfaceClientProvider- Specified by:
getClientsCountin interfaceRealmProvider- Parameters:
realm- Realm.- Returns:
- Number of the clients in the given realm.
-
getGroupsCountByNameContaining
public Long getGroupsCountByNameContaining(RealmModel realm, String search)
Description copied from interface:GroupProviderReturns the number of top level groups containing groups with the given string in name for the given realm.- Specified by:
getGroupsCountByNameContainingin interfaceGroupProvider- Specified by:
getGroupsCountByNameContainingin interfaceRealmProvider- Parameters:
realm- Realm.search- Case insensitive string which will be searched for.- Returns:
- Number of groups with the given string in its name.
-
getGroupsByRoleStream
public Stream<GroupModel> getGroupsByRoleStream(RealmModel realm, RoleModel role, Integer firstResult, Integer maxResults)
Description copied from interface:GroupProviderReturns groups with the given role in the given realm.- Specified by:
getGroupsByRoleStreamin interfaceGroupProvider- Parameters:
realm- Realm.role- Role.firstResult- First result to return. Ignored if negative ornull.maxResults- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of groups with the given role. Never returns
null.
-
getTopLevelGroupsStream
public Stream<GroupModel> getTopLevelGroupsStream(RealmModel realm)
Description copied from interface:GroupProviderReturns all top level groups (i.e. groups without parent group) for the given realm.- Specified by:
getTopLevelGroupsStreamin interfaceGroupProvider- Parameters:
realm- Realm.- Returns:
- Stream of all top level groups in the realm. Never returns
null.
-
getTopLevelGroupsStream
public Stream<GroupModel> getTopLevelGroupsStream(RealmModel realm, Integer first, Integer max)
Description copied from interface:GroupProviderReturns top level groups (i.e. groups without parent group) for the given realm.- Specified by:
getTopLevelGroupsStreamin interfaceGroupProvider- Parameters:
realm- Realm.first- First result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of top level groups in the realm. Never returns
null.
-
removeGroup
public boolean removeGroup(RealmModel realm, GroupModel group)
Description copied from interface:GroupProviderRemoves the given group for the given realm.- Specified by:
removeGroupin interfaceGroupProvider- Specified by:
removeGroupin interfaceRealmProvider- Parameters:
realm- Realm.group- Group.- Returns:
- true if the group was removed, false if group doesn't exist or doesn't belong to the given realm
-
createGroup
public GroupModel createGroup(RealmModel realm, String id, String name, GroupModel toParent)
Description copied from interface:GroupProviderCreates a new group with the given name, id, name and parent to the given realm.- Specified by:
createGroupin interfaceGroupProvider- Specified by:
createGroupin interfaceRealmProvider- Parameters:
realm- Realm.id- Id, will be generated ifnull.name- Name.toParent- Parent group, ornullif the group is top level group- Returns:
- Model of the created group
-
addTopLevelGroup
public void addTopLevelGroup(RealmModel realm, GroupModel subGroup)
Description copied from interface:GroupProviderRemoves parent group for the given group in the given realm.- Specified by:
addTopLevelGroupin interfaceGroupProvider- Specified by:
addTopLevelGroupin interfaceRealmProvider- Parameters:
realm- Realm.subGroup- Group.
-
preRemove
public void preRemove(RealmModel realm, RoleModel role)
-
addClient
public ClientModel addClient(RealmModel realm, String clientId)
Description copied from interface:ClientProviderAdds a client with givenclientIdto the given realm. The internal ID of the client will be created automatically.- Specified by:
addClientin interfaceClientProvider- Specified by:
addClientin interfaceRealmProvider- Parameters:
realm- Realm owning this client.clientId- String that identifies the client to the external parties. Maps toclient_idin OIDC orentityIDin SAML.- Returns:
- Model of the created client.
-
addClient
public ClientModel addClient(RealmModel realm, String id, String clientId)
Description copied from interface:ClientProviderAdds a client with given internal ID andclientIdto the given realm.- Specified by:
addClientin interfaceClientProvider- Specified by:
addClientin interfaceRealmProvider- Parameters:
realm- Realm owning this client.id- Internal ID of the client ornullif one is to be created by the underlying storeclientId- String that identifies the client to the external parties. Maps toclient_idin OIDC orentityIDin SAML.- Returns:
- Model of the created client.
-
getClientsStream
public Stream<ClientModel> getClientsStream(RealmModel realm)
Description copied from interface:ClientProviderReturns all the clients of the given realm as a stream. Effectively the same as the callgetClientsStream(realm, null, null).- Specified by:
getClientsStreamin interfaceClientProvider- Parameters:
realm- Realm.- Returns:
- Stream of the clients. Never returns
null.
-
getClientsStream
public Stream<ClientModel> getClientsStream(RealmModel realm, Integer firstResult, Integer maxResults)
Description copied from interface:ClientProviderReturns the clients of the given realm as a stream.- Specified by:
getClientsStreamin interfaceClientProvider- Parameters:
realm- Realm.firstResult- First result to return. Ignored if negative ornull.maxResults- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of the clients. Never returns
null.
-
getAlwaysDisplayInConsoleClientsStream
public Stream<ClientModel> getAlwaysDisplayInConsoleClientsStream(RealmModel realm)
Description copied from interface:ClientProviderReturns a stream of clients that are expected to always show up in account console.- Specified by:
getAlwaysDisplayInConsoleClientsStreamin interfaceClientProvider- Parameters:
realm- Realm owning the clients.- Returns:
- Stream of the clients. Never returns
null.
-
getClientById
public ClientModel getClientById(RealmModel realm, String id)
Description copied from interface:ClientLookupProviderExact search for a client by its internal ID.- Specified by:
getClientByIdin interfaceClientLookupProvider- Parameters:
realm- Realm to limit the search.id- Internal ID- Returns:
- Model of the client, or
nullif no client is found.
-
getClientByClientId
public ClientModel getClientByClientId(RealmModel realm, String clientId)
Description copied from interface:ClientLookupProviderExact search for a client by its public client identifier.- Specified by:
getClientByClientIdin interfaceClientLookupProvider- Parameters:
realm- Realm to limit the search for clients.clientId- String that identifies the client to the external parties. Maps toclient_idin OIDC orentityIDin SAML.- Returns:
- Model of the client, or
nullif no client is found.
-
searchClientsByClientIdStream
public Stream<ClientModel> searchClientsByClientIdStream(RealmModel realm, String clientId, Integer firstResult, Integer maxResults)
Description copied from interface:ClientLookupProviderCase-insensitive search for clients that contain the given string in their public client identifier.- Specified by:
searchClientsByClientIdStreamin interfaceClientLookupProvider- Parameters:
realm- Realm to limit the search for clients.clientId- Searched substring of the public client identifier (client_idin OIDC orentityIDin SAML.)firstResult- First result to return. Ignored if negative ornull.maxResults- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of ClientModel or an empty stream if no client is found. Never returns
null.
-
searchClientsByAttributes
public Stream<ClientModel> searchClientsByAttributes(RealmModel realm, Map<String,String> attributes, Integer firstResult, Integer maxResults)
- Specified by:
searchClientsByAttributesin interfaceClientLookupProvider
-
removeClients
public void removeClients(RealmModel realm)
Description copied from interface:ClientProviderRemoves all clients from the given realm.- Specified by:
removeClientsin interfaceClientProvider- Parameters:
realm- Realm.
-
removeClient
public boolean removeClient(RealmModel realm, String id)
Description copied from interface:ClientProviderRemoves given client from the given realm.- Specified by:
removeClientin interfaceClientProvider- Parameters:
realm- Realm.id- Internal ID of the client- Returns:
trueif the client existed and has been removed,falseotherwise.
-
getClientScopeById
public ClientScopeModel getClientScopeById(RealmModel realm, String id)
Description copied from interface:ClientScopeLookupProviderExact search for a client scope by its internal ID..- Specified by:
getClientScopeByIdin interfaceClientScopeLookupProvider- Specified by:
getClientScopeByIdin interfaceRealmProvider- Parameters:
realm- Realm.id- Internal ID of the role.- Returns:
- Model of the client scope.
-
getClientScopesStream
public Stream<ClientScopeModel> getClientScopesStream(RealmModel realm)
Description copied from interface:ClientScopeProviderReturns all the client scopes of the given realm as a stream.- Specified by:
getClientScopesStreamin interfaceClientScopeProvider- Parameters:
realm- Realm.- Returns:
- Stream of the client scopes. Never returns
null.
-
addClientScope
public ClientScopeModel addClientScope(RealmModel realm, String id, String name)
Description copied from interface:ClientScopeProviderCreates new client scope with given internal ID andnameto the given realm. Spaces innamewill be replaced by underscore so that scope name can be used as value of scope parameter.- Specified by:
addClientScopein interfaceClientScopeProvider- Parameters:
realm- Realm owning this client scope.id- Internal ID of the client scope ornullif one is to be created by the underlying storename- String name of the client scope.- Returns:
- Model of the created client scope.
-
removeClientScope
public boolean removeClientScope(RealmModel realm, String id)
Description copied from interface:ClientScopeProviderRemoves client scope from the given realm.- Specified by:
removeClientScopein interfaceClientScopeProvider- Parameters:
realm- Realm.id- Internal ID of the client scope- Returns:
trueif the client scope existed and has been removed,falseotherwise.
-
removeClientScopes
public void removeClientScopes(RealmModel realm)
Description copied from interface:ClientScopeProviderRemoves all client scopes from the given realm.- Specified by:
removeClientScopesin interfaceClientScopeProvider- Parameters:
realm- Realm.
-
addClientScopes
public void addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
Description copied from interface:ClientProviderAssign clientScopes to the client. Add as default scopes (if parameter 'defaultScope' is true) or optional scopes (if parameter 'defaultScope' is false)- Specified by:
addClientScopesin interfaceClientProvider- Parameters:
realm- Realm.client- Client.clientScopes- to be assigneddefaultScope- if true the scopes are assigned as default, or optional in case of false
-
removeClientScope
public void removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)
Description copied from interface:ClientProviderUnassign clientScope from the client.- Specified by:
removeClientScopein interfaceClientProvider- Parameters:
realm- Realm.client- Client.clientScope- to be unassigned
-
getClientScopes
public Map<String,ClientScopeModel> getClientScopes(RealmModel realm, ClientModel client, boolean defaultScope)
Description copied from interface:ClientLookupProviderReturn all default scopes (ifdefaultScopeistrue) or all optional scopes (ifdefaultScopeisfalse) linked with the client- Specified by:
getClientScopesin interfaceClientLookupProvider- Parameters:
realm- Realmclient- ClientdefaultScope- if true default scopes, if false optional scopes, are returned- Returns:
- map where key is the name of the clientScope, value is particular clientScope. Returns empty map if no scopes linked (never returns null).
-
searchForGroupByNameStream
public Stream<GroupModel> searchForGroupByNameStream(RealmModel realm, String search, Boolean exact, Integer first, Integer max)
Description copied from interface:GroupLookupProviderReturns the group hierarchy with the given string in name for the given realm. For a matching group node the parent group is fetched by id (with all children) and added to the result stream. This is done until the group node does not have a parent (root group)- Specified by:
searchForGroupByNameStreamin interfaceGroupLookupProvider- Parameters:
realm- Realm.search- Case sensitive searched string.exact- Boolean which defines wheather search param should be matched exactly.first- First result to return. Ignored if negative ornull.max- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of root groups that have the given string in their name themself or a group in their child-collection has.
The returned hierarchy contains siblings that do not necessarily have a matching name. Never returns
null.
-
searchGroupsByAttributes
public Stream<GroupModel> searchGroupsByAttributes(RealmModel realm, Map<String,String> attributes, Integer firstResult, Integer maxResults)
Description copied from interface:GroupLookupProviderReturns the groups filtered by attribute names and attribute values for the given realm.- Specified by:
searchGroupsByAttributesin interfaceGroupLookupProvider- Parameters:
realm- Realm.attributes- name-value pairs that are compared to group attributes.firstResult- First result to return. Ignored if negative ornull.maxResults- Maximum number of results to return. Ignored if negative ornull.- Returns:
- Stream of groups with attributes matching all searched attributes. Never returns
null.
-
removeExpiredClientInitialAccess
public void removeExpiredClientInitialAccess()
Description copied from interface:RealmProviderRemoves all expired client initial accesses from all realms.- Specified by:
removeExpiredClientInitialAccessin interfaceRealmProvider
-
updateLocalizationText
public boolean updateLocalizationText(RealmModel realm, String locale, String key, String text)
- Specified by:
updateLocalizationTextin interfaceRealmProvider
-
saveLocalizationText
public void saveLocalizationText(RealmModel realm, String locale, String key, String text)
- Specified by:
saveLocalizationTextin interfaceRealmProvider
-
saveLocalizationTexts
public void saveLocalizationTexts(RealmModel realm, String locale, Map<String,String> localizationTexts)
- Specified by:
saveLocalizationTextsin interfaceRealmProvider
-
deleteLocalizationTextsByLocale
public boolean deleteLocalizationTextsByLocale(RealmModel realm, String locale)
- Specified by:
deleteLocalizationTextsByLocalein interfaceRealmProvider
-
getLocalizationTextsById
public String getLocalizationTextsById(RealmModel realm, String locale, String key)
- Specified by:
getLocalizationTextsByIdin interfaceRealmProvider
-
deleteLocalizationText
public boolean deleteLocalizationText(RealmModel realm, String locale, String key)
- Specified by:
deleteLocalizationTextin interfaceRealmProvider
-
-