public interface X509AuthoritiesPopulator
UserDetails associated with the X.509 certificate presented by a client.
Although the certificate will already have been validated by the web container, implementations may choose to perform
additional application-specific checks on the certificate content here. If an implementation chooses to reject the
certificate, it should throw a BadCredentialsException.
Migrated from Spring Security 2 since it has been removed in Spring Security 3.
| Modifier and Type | Method and Description |
|---|---|
org.springframework.security.core.userdetails.UserDetails |
getUserDetails(X509Certificate userCertificate)
Obtains the granted authorities for the specified user.
|
org.springframework.security.core.userdetails.UserDetails getUserDetails(X509Certificate userCertificate) throws org.springframework.security.core.AuthenticationException
May throw any AuthenticationException or return null if the authorities are unavailable.
userCertificate - the X.509 certificate suppliedorg.springframework.security.core.AuthenticationException - if the user details are not available or the certificate isn't valid for the
application's purpose.Copyright © 2021 Pivotal Software. All rights reserved.