Package org.keycloak.storage.federated
Interface UserConsentFederatedStorage.Streams
- 
- All Superinterfaces:
- UserConsentFederatedStorage
 - All Known Subinterfaces:
- UserFederatedStorageProvider.Streams
 - All Known Implementing Classes:
- JpaUserFederatedStorageProvider
 - Enclosing interface:
- UserConsentFederatedStorage
 
 public static interface UserConsentFederatedStorage.Streams extends UserConsentFederatedStorage TheUserConsentFederatedStorage.Streamsinterface makes all collection-based methods inUserConsentFederatedStoragedefault 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.UserConsentFederatedStorageUserConsentFederatedStorage.Streams
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default List<UserConsentModel>getConsents(RealmModel realm, String userId)Stream<UserConsentModel>getConsentsStream(RealmModel realm, String userId)Obtains the consents associated with the federated user identified byuserId.- 
Methods inherited from interface org.keycloak.storage.federated.UserConsentFederatedStorageaddConsent, getConsentByClient, revokeConsentForClient, updateConsent
 
- 
 
- 
- 
- 
Method Detail- 
getConsentsdefault List<UserConsentModel> getConsents(RealmModel realm, String userId) - Specified by:
- getConsentsin interface- UserConsentFederatedStorage
 
 - 
getConsentsStreamStream<UserConsentModel> getConsentsStream(RealmModel realm, String userId) Description copied from interface:UserConsentFederatedStorageObtains the consents associated with the federated user identified byuserId.- Specified by:
- getConsentsStreamin interface- UserConsentFederatedStorage
- Parameters:
- realm- a reference to the realm.
- userId- the user identifier.
- Returns:
- a non-null Streamof consents associated with the user.
 
 
- 
 
-