SEC-1132: Moved switch user event class to web module as it is only used by SwitchUserProcessingFilter.

This commit is contained in:
Luke Taylor 2009-04-12 04:16:46 +00:00
parent 32ebd277d4
commit 1b43e3661a
2 changed files with 3 additions and 3 deletions

View File

@ -13,10 +13,11 @@
* limitations under the License.
*/
package org.springframework.security.event.authentication;
package org.springframework.security.web.authentication.switchuser;
import org.springframework.security.Authentication;
import org.springframework.security.event.authentication.AbstractAuthenticationEvent;
import org.springframework.security.userdetails.UserDetails;
@ -33,7 +34,7 @@ public class AuthenticationSwitchUserEvent extends AbstractAuthenticationEvent {
//~ Constructors ===================================================================================================
/**
/**
* Switch user context event constructor
*
* @param authentication The current <code>Authentication</code> object

View File

@ -42,7 +42,6 @@ import org.springframework.security.GrantedAuthority;
import org.springframework.security.LockedException;
import org.springframework.security.SpringSecurityMessageSource;
import org.springframework.security.context.SecurityContextHolder;
import org.springframework.security.event.authentication.AuthenticationSwitchUserEvent;
import org.springframework.security.providers.UsernamePasswordAuthenticationToken;
import org.springframework.security.userdetails.UserDetails;
import org.springframework.security.userdetails.UserDetailsChecker;