Package org.acegisecurity.providers.jaas.event

Examples of org.acegisecurity.providers.jaas.event.JaasAuthenticationFailedEvent


     *
     * @param token The {@link UsernamePasswordAuthenticationToken} being processed
     * @param ase The {@link AcegiSecurityException} that caused the failure
     */
    protected void publishFailureEvent(UsernamePasswordAuthenticationToken token, AcegiSecurityException ase) {
        applicationEventPublisher.publishEvent(new JaasAuthenticationFailedEvent(token, ase));
    }
View Full Code Here


     * processed
     * @param ase The {@link AcegiSecurityException} that caused the failure
     */
    protected void publishFailureEvent(
            UsernamePasswordAuthenticationToken token, AcegiSecurityException ase) {
        getApplicationContext().publishEvent(new JaasAuthenticationFailedEvent(
                token, ase));
    }
View Full Code Here

TOP

Related Classes of org.acegisecurity.providers.jaas.event.JaasAuthenticationFailedEvent

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.