Package org.acegisecurity
Interface Authentication
-
- All Superinterfaces:
Principal
,Serializable
- All Known Implementing Classes:
AbstractAuthenticationToken
,AnonymousAuthenticationToken
,UsernamePasswordAuthenticationToken
@Deprecated public interface Authentication extends Principal, Serializable
Deprecated.use TODO orAuthentication
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description static Authentication
fromSpring(org.springframework.security.core.Authentication a)
Deprecated.GrantedAuthority[]
getAuthorities()
Deprecated.Object
getCredentials()
Deprecated.Object
getDetails()
Deprecated.Object
getPrincipal()
Deprecated.boolean
isAuthenticated()
Deprecated.void
setAuthenticated(boolean isAuthenticated)
Deprecated.default org.springframework.security.core.Authentication
toSpring()
Deprecated.
-
-
-
Method Detail
-
getAuthorities
GrantedAuthority[] getAuthorities()
Deprecated.
-
getCredentials
Object getCredentials()
Deprecated.
-
getDetails
Object getDetails()
Deprecated.
-
getPrincipal
Object getPrincipal()
Deprecated.
-
isAuthenticated
boolean isAuthenticated()
Deprecated.
-
setAuthenticated
void setAuthenticated(boolean isAuthenticated) throws IllegalArgumentException
Deprecated.- Throws:
IllegalArgumentException
-
fromSpring
@NonNull static Authentication fromSpring(@NonNull org.springframework.security.core.Authentication a)
Deprecated.
-
toSpring
@NonNull default org.springframework.security.core.Authentication toSpring()
Deprecated.
-
-