Java org.springframework.security.core Authentication fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.core Authentication fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.core Authentication.

The text is from its open source code.

Implementation

org.springframework.security.core.Authentication has the following implementations.
Click this link to see all its implementation.

Constructor

Method

CollectiongetAuthorities()
Set by an AuthenticationManager to indicate the authorities that the principal has been granted.
ClassgetClass()
Returns the runtime class of this Object .
ObjectgetCredentials()
The credentials that prove the principal is correct.
ObjectgetDetails()
Stores additional details about the authentication request.
StringgetName()
Returns the name of this principal.
ObjectgetPrincipal()
The identity of the principal being authenticated.
booleanisAuthenticated()
Used to indicate to AbstractSecurityInterceptor whether it should present the authentication token to the AuthenticationManager.
voidsetAuthenticated(boolean isAuthenticated)
See #isAuthenticated() for a full description.
StringtoString()
Returns a string representation of this principal.