Example usage for org.springframework.security.authentication AuthenticationEventPublisher interface-usage

List of usage examples for org.springframework.security.authentication AuthenticationEventPublisher interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.authentication AuthenticationEventPublisher interface-usage.

Usage

From source file grails.plugin.springsecurity.rest.authentication.RestAuthenticationEventPublisher.java

public interface RestAuthenticationEventPublisher extends AuthenticationEventPublisher {
    public void publishTokenCreation(AccessToken accessToken);
}

From source file grails.plugin.springsecurity.authentication.NullAuthenticationEventPublisher.java

/**
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */
public class NullAuthenticationEventPublisher implements AuthenticationEventPublisher {

    public void publishAuthenticationFailure(AuthenticationException e, Authentication a) {

From source file edu.umn.msi.tropix.webgui.server.security.impl.AuthenticationEventHandler.java

@ManagedBean
@Named("authenticationEventHandler")
class AuthenticationEventHandler implements AuthenticationEventPublisher {
    private static final Log LOG = LogFactory.getLog(AuthenticationEventHandler.class);

    public void publishAuthenticationFailure(final AuthenticationException exception,

From source file org.springframework.security.authentication.DefaultAuthenticationEventPublisher.java

/**
 * The default strategy for publishing authentication events.
 * <p>
 * Maps well-known <tt>AuthenticationException</tt> types to events and publishes them via
 * the application context. If configured as a bean, it will pick up the
 * <tt>ApplicationEventPublisher</tt> automatically. Otherwise, the constructor which