
|
If you were logged in you would be able to see more operations.
|
|
|
|
If concurrent session control is used with an authentication provider which doesn't copy the authentication details object to the successful authentication (e.g. CasAuthenticationProvider) then the check with the concurrent session controller on whether access is allowed takes place before the copyDetails method of AbstractAuthenticationManager is called. This isn't a problem with classes which extend AbstractUserDetailsAuthenticationProvider, as it copies the authentication details object itself.
The copyDetails method should probably be pulled down into ProviderManager and called before checkAuthenticationAllowed() is called. This will ensure that the details object is available even if the provider doesn't set it.
It's also not clear that we really need an AbstractAuthenticationManager at all, given how little there is in there.
|
|
Description
|
If concurrent session control is used with an authentication provider which doesn't copy the authentication details object to the successful authentication (e.g. CasAuthenticationProvider) then the check with the concurrent session controller on whether access is allowed takes place before the copyDetails method of AbstractAuthenticationManager is called. This isn't a problem with classes which extend AbstractUserDetailsAuthenticationProvider, as it copies the authentication details object itself.
The copyDetails method should probably be pulled down into ProviderManager and called before checkAuthenticationAllowed() is called. This will ensure that the details object is available even if the provider doesn't set it.
It's also not clear that we really need an AbstractAuthenticationManager at all, given how little there is in there. |
Show » |
Sort Order:
| No work has yet been logged on this issue.
|
|