Package org.springframework.richclient.security

Examples of org.springframework.richclient.security.AuthenticationFailedEvent


            result = getAuthenticationManager().authenticate( authentication );
        } catch( SpringSecurityException e ) {
            logger.info( "authentication failed: " + e.getMessage() );

            // Fire application event to advise of failed login
            appCtx.publishEvent( new AuthenticationFailedEvent( authentication, e ) );

            // rethrow the exception
            throw e;
        }
View Full Code Here

TOP

Related Classes of org.springframework.richclient.security.AuthenticationFailedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.