I'm investigating an account binding and management application, where users will be binding multiple federated authentication sources into a single localized "account", very similar to how you can bind multiple OpenID logins to a single account here on Stack Overflow.
I know that I can have multiple login contexts with different security:http blocks, but what's different about this application is that it needs to have several logins happening simultaneously.
Let's say, for instance, that you log in with a username and password, but want to bind your Google account. I can fairly easily set up an application that lets you log in with either, but in order for the bind action to take place, you would need to be logged in with a username/password and then log in with your Google account without logging out of the first session. The problem I see is that the normal AuthenticationManager code will stop as soon as it finds you "logged in" with something and will not continue processing.
Is this a case for a custom AuthenticationManager? Custom AuthenticationProvider? Both? Is it even possible to do with Spring Security?