Interface ICallbackLogic
-
public interface ICallbackLogic
Common interface for callback logic. The callback logic is performed in the callback filter and is responsible for performing the callback process of the user for a specificauthentication target
.- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
perform(javax.servlet.FilterChain filterChain)
Perform the callback logic.
-
-
-
Method Detail
-
perform
void perform(javax.servlet.FilterChain filterChain) throws IOException, javax.servlet.ServletException
Perform the callback logic.- Parameters:
filterChain
- The filter chain to continue the request processing.- Throws:
IOException
- If an I/O error occurs.javax.servlet.ServletException
- If an error occurs during the request processing.
-
-