org.springframework.ws.soap.security.x509
Class X509AuthenticationToken
java.lang.Object
org.springframework.security.authentication.AbstractAuthenticationToken
org.springframework.ws.soap.security.x509.X509AuthenticationToken
- All Implemented Interfaces:
- Serializable, Principal, org.springframework.security.core.Authentication, org.springframework.security.core.CredentialsContainer
public class X509AuthenticationToken
- extends org.springframework.security.authentication.AbstractAuthenticationToken
Authentication
implementation for X.509 client-certificate authentication.
Migrated from Spring Security 2 since it has been removed in Spring Security 3.
- Author:
- Luke Taylor
- See Also:
- Serialized Form
Methods inherited from class org.springframework.security.authentication.AbstractAuthenticationToken |
equals, eraseCredentials, getAuthorities, getDetails, getName, hashCode, isAuthenticated, setAuthenticated, setDetails, toString |
X509AuthenticationToken
public X509AuthenticationToken(X509Certificate credentials)
- Used for an authentication request. The
Authentication.isAuthenticated()
will return
false
.
- Parameters:
credentials
- the certificate
X509AuthenticationToken
public X509AuthenticationToken(Object principal,
X509Certificate credentials,
Collection<? extends org.springframework.security.core.GrantedAuthority> authorities)
- Used for an authentication response object. The
Authentication.isAuthenticated()
will return true
.
- Parameters:
principal
- the principal, which is generally a
UserDetails
credentials
- the certificateauthorities
- the authorities
getCredentials
public Object getCredentials()
getPrincipal
public Object getPrincipal()
Copyright © 2005-2013 The Spring Web Services Framework. All Rights Reserved.