Interface Authenticator
- All Known Implementing Classes:
BaseAuthenticator,BasicAuthenticator,JaasAuthenticator
public interface Authenticator
Interface used for authentication. Can be implemented externally, too.
- Since:
- 07.02.18
- Author:
- roland
-
Method Summary
Modifier and TypeMethodDescriptionbooleanauthenticate(jakarta.servlet.http.HttpServletRequest pRequest) Authenticate the given request
-
Method Details
-
authenticate
boolean authenticate(jakarta.servlet.http.HttpServletRequest pRequest) Authenticate the given request- Parameters:
pRequest- request to examine- Returns:
- true if authentication passes, false otherwise
-