Package org.keycloak.storage.federated
Interface UserRequiredActionsFederatedStorage
- All Known Subinterfaces:
UserFederatedStorageProvider
,UserFederatedStorageProvider.Streams
,UserRequiredActionsFederatedStorage.Streams
- All Known Implementing Classes:
JpaUserFederatedStorageProvider
public interface UserRequiredActionsFederatedStorage
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Deprecated.This interface is no longer necessary; collection-based methods were removed from the parent interface and therefore the parent interface can be used directly -
Method Summary
Modifier and TypeMethodDescriptionvoid
addRequiredAction
(RealmModel realm, String userId, String action) getRequiredActionsStream
(RealmModel realm, String userId) Obtains the names of required actions associated with the federated user identified byuserId
.void
removeRequiredAction
(RealmModel realm, String userId, String action)
-
Method Details
-
getRequiredActionsStream
Obtains the names of required actions associated with the federated user identified byuserId
.- Parameters:
realm
- a reference to the realm.userId
- the user identifier.- Returns:
- a non-null
Stream
of required action names.
-
addRequiredAction
-
removeRequiredAction
-