Interface BeforeAuthLogoutCallback
- 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.
(Functional-)Interface for registering and handling BeforeAuthLogoutCallbacks.
-
Method Summary
Modifier and TypeMethodDescriptionvoidexecute()Method to be executed when callback occurs.static List<BeforeAuthLogoutCallback> filter(List<OidcCallback> callbacks) A list that can contain any of the available oidc callbacks and should be filtered for BeforeAuthLogoutCallbacks.
-
Method Details
-
filter
A list that can contain any of the available oidc callbacks and should be filtered for BeforeAuthLogoutCallbacks.- Parameters:
callbacks- The list to filter.- Returns:
- A list containing only BeforeAuthLogoutCallbacks.
-
execute
void execute()Method to be executed when callback occurs.
-