1
0
mirror of synced 2026-08-05 17:57:15 +00:00

SEC-3019: Java Config for Http Basic supports Rememberme

This commit is contained in:
Rob Winch
2015-07-16 11:12:44 -05:00
parent b96cee7950
commit 0e36f85dab
3 changed files with 36 additions and 1 deletions
+4 -1
View File
@@ -3047,7 +3047,10 @@ create table persistent_logins (username varchar(64) not null,
[[remember-me-impls]]
=== Remember-Me Interfaces and Implementations
Remember-me authentication is not used with basic authentication, given it is often not used with `HttpSession` s. Remember-me is used with `UsernamePasswordAuthenticationFilter`, and is implemented via hooks in the `AbstractAuthenticationProcessingFilter` superclass. The hooks will invoke a concrete `RememberMeServices` at the appropriate times. The interface looks like this:
Remember-me is used with `UsernamePasswordAuthenticationFilter`, and is implemented via hooks in the `AbstractAuthenticationProcessingFilter` superclass.
It is also used within `BasicAuthenticationFilter`.
The hooks will invoke a concrete `RememberMeServices` at the appropriate times.
The interface looks like this:
[source,java]
----