I'm looking at this page in the Spring Security JavaDoc:
What does this line mean?
Return null, indicating that the authentication process is still in progress. Before returning, the implementation should perform any additional work required to complete the process.
I'm working on a form that allows a user to log in and collects other data. I don't want to use the default UsernamePasswordAuthenticationFilter because I will then lose all the other data filled out in the form.