org.acegisecurity.ui.x509 |
X.509 authentication filter and related classes.
|
Java Source File Name | Type | Comment |
X509ProcessingFilter.java | Class | Processes the X.509 certificate submitted by a client browser when HTTPS is used with client-authentication
enabled. An
X509AuthenticationToken is created with the certificate as the credentials.
The configured authentication manager is expected to supply a provider which can handle this token (usually
an instance of
org.acegisecurity.providers.x509.X509AuthenticationProvider ).
If authentication is successful, an
org.acegisecurity.event.authentication.InteractiveAuthenticationSuccessEvent will be published to the application
context. |
X509ProcessingFilterEntryPoint.java | Class | In the X.509 authentication case (unlike CAS, for example) the certificate
will already have been extracted from the request and a secure context
established by the time the security-enforcement filter is invoked.
Therefore this class isn't actually responsible for the commencement of
authentication, as it is in the case of other providers. |
X509ProcessingFilterEntryPointTests.java | Class | Tests
X509ProcessingFilterEntryPoint . |
X509ProcessingFilterTests.java | Class | Tests
org.acegisecurity.ui.x509.X509ProcessingFilter . |