Interface ILoginLogic
public interface ILoginLogic
Common interface for login logic of authentication requests. The login logic is performed in the login filter and is
responsible for performing the login process of the user for a specific
authentication target.- Since:
- 7.2.0
- Author:
- XIMA Media GmbH
-
Method Summary
Modifier and TypeMethodDescriptionvoidperform(javax.servlet.FilterChain filterChain) Perform the login logic.
-
Method Details
-
perform
void perform(javax.servlet.FilterChain filterChain) throws IOException, javax.servlet.ServletException Perform the login 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.
-