Open
Description
Rob Winch (Migrated from SEC-1987) said:
It is difficult to support remember me with other types of authentication since Java does not support multiple inheritance. We should use an interface instead. High level steps
- Add an interface called RememberMeAware (or something similar) which has a method called isRememberMe()
- RememberMeAuthenticationToken should implement the new interface with a final method that returns true all the time
- Update the TrustResolverImpl to use the interface to determine if remember me was used