Package org.eclipse.jetty.ee9.security
Class AbstractUserAuthentication
java.lang.Object
org.eclipse.jetty.ee9.security.AbstractUserAuthentication
- All Implemented Interfaces:
Serializable
,Authentication
,Authentication.LogoutAuthentication
,Authentication.User
,Request.AuthenticationState
- Direct Known Subclasses:
SessionAuthentication
,UserAuthentication
public abstract class AbstractUserAuthentication
extends Object
implements Authentication.User, Serializable
AbstractUserAuthentication
Base class for representing an authenticated user.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.ee9.nested.Authentication
Authentication.Challenge, Authentication.Deferred, Authentication.Failed, Authentication.Failure, Authentication.LoginAuthentication, Authentication.LogoutAuthentication, Authentication.NonAuthenticated, Authentication.ResponseSent, Authentication.SendSuccess, Authentication.User, Authentication.Wrapped
-
Field Summary
FieldsFields inherited from interface org.eclipse.jetty.ee9.nested.Authentication
NOT_CHECKED, SEND_CONTINUE, SEND_FAILURE, SEND_SUCCESS, UNAUTHENTICATED
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
declaredRolesContains
(String roleName) boolean
isUserInRole
(UserIdentityScope scope, String role) logout
(jakarta.servlet.ServletRequest request) Remove any user information that may be present in the request such that a call to getUserPrincipal/getRemoteUser will return null.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.jetty.ee9.nested.Authentication.User
getUserPrincipal
-
Field Details
-
_method
-
_userIdentity
-
-
Constructor Details
-
AbstractUserAuthentication
-
-
Method Details
-
getAuthMethod
- Specified by:
getAuthMethod
in interfaceAuthentication.User
-
getUserIdentity
- Specified by:
getUserIdentity
in interfaceAuthentication.User
-
isUserInRole
- Specified by:
isUserInRole
in interfaceAuthentication.User
-
declaredRolesContains
-
logout
Description copied from interface:Authentication.LogoutAuthentication
Remove any user information that may be present in the request such that a call to getUserPrincipal/getRemoteUser will return null.- Specified by:
logout
in interfaceAuthentication.LogoutAuthentication
- Parameters:
request
- the request- Returns:
- NoAuthentication if we successfully logged out
-