Interface ReadyCallback

All Superinterfaces:
OidcCallback
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ReadyCallback extends OidcCallback
(Functional-)Interface for registering and handling ReadyCallbacks.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(boolean authenticated)
    Method to be executed when callback occurs.
    filter(List<OidcCallback> callbacks)
    A list that can contain any of the available oidc callbacks and should be filtered for ReadyCallbacks.
  • Method Details

    • filter

      static List<ReadyCallback> filter(List<OidcCallback> callbacks)
      A list that can contain any of the available oidc callbacks and should be filtered for ReadyCallbacks.
      Parameters:
      callbacks - The list to filter.
      Returns:
      A list containing only ReadyCallbacks.
    • execute

      void execute(boolean authenticated)
      Method to be executed when callback occurs.
      Parameters:
      authenticated - Whether the user is authenticated when the callback occurs.