Interface IPluginLoginLogic
-
public interface IPluginLoginLogic
Common interface for a custom login logic that can be provided by a plugin. A Login logic determines how to handle authentication request for a given authenticator. For example the custom login logic might store certain parameters in the session for later use and then start the authentication request by redirecting to the IDP.- Since:
- 7.2.0
- Author:
- XIMA Media GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
perform(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.FilterChain filterChain)
Perform the custom login logic of a plugin.
-
-
-
Method Detail
-
perform
void perform(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.FilterChain filterChain)
Perform the custom login logic of a plugin.- Parameters:
request
- of the login filter (.../formcycle/auth/login
).response
- of the login filter (.../formcycle/auth/login
).filterChain
- of the login.filter (.../formcycle/auth/login
).
-
-