Interface UserRequiredActionsFederatedStorage

All Known Subinterfaces:
UserFederatedStorageProvider, UserFederatedStorageProvider.Streams, UserRequiredActionsFederatedStorage.Streams

public interface UserRequiredActionsFederatedStorage
Version:
$Revision: 1 $
Author:
Bill Burke
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static 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 Type
    Method
    Description
    void
    addRequiredAction(org.keycloak.models.RealmModel realm, String userId, String action)
     
    getRequiredActionsStream(org.keycloak.models.RealmModel realm, String userId)
    Obtains the names of required actions associated with the federated user identified by userId.
    void
    removeRequiredAction(org.keycloak.models.RealmModel realm, String userId, String action)
     
  • Method Details

    • getRequiredActionsStream

      Stream<String> getRequiredActionsStream(org.keycloak.models.RealmModel realm, String userId)
      Obtains the names of required actions associated with the federated user identified by userId.
      Parameters:
      realm - a reference to the realm.
      userId - the user identifier.
      Returns:
      a non-null Stream of required action names.
    • addRequiredAction

      void addRequiredAction(org.keycloak.models.RealmModel realm, String userId, String action)
    • removeRequiredAction

      void removeRequiredAction(org.keycloak.models.RealmModel realm, String userId, String action)