Package org.keycloak.storage.federated
Interface UserRoleMappingsFederatedStorage.Streams
- 
- All Superinterfaces:
- UserRoleMappingsFederatedStorage
 - All Known Subinterfaces:
- UserFederatedStorageProvider.Streams
 - All Known Implementing Classes:
- JpaUserFederatedStorageProvider
 - Enclosing interface:
- UserRoleMappingsFederatedStorage
 
 public static interface UserRoleMappingsFederatedStorage.Streams extends UserRoleMappingsFederatedStorage TheUserRoleMappingsFederatedStorage.Streamsinterface makes all collection-based methods inUserRoleMappingsFederatedStoragedefault by providing implementations that delegate to theStream-based variants instead of the other way around. It allows for implementations to focus on theStream-based approach for processing sets of data and benefit from the potential memory and performance optimizations of that approach.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.keycloak.storage.federated.UserRoleMappingsFederatedStorageUserRoleMappingsFederatedStorage.Streams
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Set<RoleModel>getRoleMappings(RealmModel realm, String userId)Stream<RoleModel>getRoleMappingsStream(RealmModel realm, String userId)Obtains the roles associated with the federated user identified byuserId.- 
Methods inherited from interface org.keycloak.storage.federated.UserRoleMappingsFederatedStoragedeleteRoleMapping, grantRole
 
- 
 
- 
- 
- 
Method Detail- 
getRoleMappingsdefault Set<RoleModel> getRoleMappings(RealmModel realm, String userId) - Specified by:
- getRoleMappingsin interface- UserRoleMappingsFederatedStorage
 
 - 
getRoleMappingsStreamStream<RoleModel> getRoleMappingsStream(RealmModel realm, String userId) Description copied from interface:UserRoleMappingsFederatedStorageObtains the roles associated with the federated user identified byuserId.- Specified by:
- getRoleMappingsStreamin interface- UserRoleMappingsFederatedStorage
- Parameters:
- realm- a reference to the realm.
- userId- the user identifier.
- Returns:
- a non-null Streamof roles.
 
 
- 
 
-