Example usage for org.springframework.context ApplicationEventPublisherAware interface-usage

List of usage examples for org.springframework.context ApplicationEventPublisherAware interface-usage

Introduction

In this page you can find the example usage for org.springframework.context ApplicationEventPublisherAware interface-usage.

Usage

From source file org.springframework.security.access.intercept.AbstractSecurityInterceptor.java

/**
 * Abstract class that implements security interception for secure objects.
 * <p>
 * The <code>AbstractSecurityInterceptor</code> will ensure the proper startup
 * configuration of the security interceptor. It will also implement the proper handling
 * of secure object invocations, namely:

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

From source file org.springframework.security.authentication.jaas.AbstractJaasAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details from a
 * JAAS login configuration.
 *
 * <p>
 * This <code>AuthenticationProvider</code> is capable of validating

From source file org.springframework.security.web.authentication.session.AbstractSessionFixationProtectionStrategy.java

/**
 * A base class for performing session fixation protection.
 *
 * @author Rob Winch
 * @since 3.2
 */

From source file org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy.java

/**
 * The default implementation of {@link SessionAuthenticationStrategy}.
 * <p>
 * Creates a new session for the newly authenticated user if they already have a session (as a defence against
 * session-fixation protection attacks), and copies their session attributes across to the new session.
 * The copying of the attributes can be disabled by setting {@code migrateSessionAttributes} to {@code false}

From source file org.springframework.session.data.gemfire.AbstractGemFireOperationsSessionRepository.java

/**
 * AbstractGemFireOperationsSessionRepository is an abstract base class encapsulating functionality
 * common to all implementations that support {@link SessionRepository} operations backed by GemFire.
 *
 * @author John Blum
 * @since 1.1.0

From source file org.springframework.web.socket.messaging.StompSubProtocolHandler.java

/**
 * A {@link SubProtocolHandler} for STOMP that supports versions 1.0, 1.1, and 1.2
 * of the STOMP specification.
 *
 * @author Rossen Stoyanchev
 * @author Andy Wilkinson

From source file org.springframework.xd.dirt.launcher.RedisContainerLauncher.java

/**
 * @author Mark Fisher
 * @author Jennifer Hickey
 * @author David Turanski
 */
public class RedisContainerLauncher implements ContainerLauncher, ApplicationEventPublisherAware {

From source file org.springframework.xd.dirt.module.ModuleDeployer.java

/**
 * Listens for deployment request messages and instantiates {@link Module}s accordingly, applying {@link Plugin} logic
 * to them.
 * 
 * @author Mark Fisher
 * @author Gary Russell

From source file org.springframework.yarn.batch.support.YarnJobLauncher.java

/**
 * Utility class to {@link JobLauncher launch} Spring Batch jobs.
 * Runs all jobs in the surrounding context by default. Can also be used to
 * launch a specific job by providing a jobName
 *
 * @author Dave Syer