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

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

Introduction

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

Usage

From source file org.jasig.schedassist.impl.events.AutomaticAttendeeRemovalApplicationListener.java

/**
 * {@link ApplicationListener} for {@link AutomaticAttendeeRemovalEvent}s.
 * Sends email notifications asynchronously when events occur.
 * 
 * @author Nicholas Blair, nblair@doit.wisc.edu
 * @version $Id: AutomaticAttendeeRemovalApplicationListener.java $

From source file org.archive.crawler.spring.SheetOverlaysManager.java

/**
 * Manager which marks-up CrawlURIs with the names of all applicable 
 * Sheets, and returns overlay maps by name. 
 * 
 * @contributor gojomo
 */

From source file com.kixeye.chassis.bootstrap.Application.java

/**
 * Represents an application configured and started by Bootstrap.
 *
 * @author dturner@kixeye.com
 */
public class Application implements ApplicationListener<ContextRefreshedEvent> {

From source file mitm.djigzo.web.services.security.AuthenticationEventListener.java

/**
 * Spring bean that listens for ApplicationEvent's and logs login events.
 * 
 * @author martijn
 *
 */

From source file se.inera.axel.shs.broker.routing.internal.DefaultShsRouter.java

public class DefaultShsRouter implements ShsRouter, ApplicationListener {

    private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(DefaultShsRouter.class);

    private AgreementService agreementService;
    private DirectoryService directoryService;

From source file org.archive.modules.deciderules.surt.SurtPrefixedDecideRule.java

/**
 * Rule applies configured decision to any URIs that, when 
 * expressed in SURT form, begin with one of the prefixes
 * in the configured set. 
 * 
 * The set can be filled with SURT prefixes implied or

From source file com.epam.ta.reportportal.events.handler.AddDemoProjectEventHandler.java

/**
 * Initial deploy data
 * 
 * @author Andrei_Varabyeu
 * @author Andrei_Ramanchuk
 */

From source file com.vaadin.addon.jpacontainer.demo.TestDataGenerator.java

/**
 * A component that randomly generates test data for this demo application.
 * It implements the {@link ApplicationListener} interface and generates
 * the data when it receives a {@link ContextRefreshedEvent}.
 * <p>
 * When running inside a web application, this means that the data will be

From source file com.searchbox.framework.service.CollectionService.java

@Service
public class CollectionService implements ApplicationListener<SearchboxReady>, InitializingBean {

    private static final Logger LOGGER = LoggerFactory.getLogger(CollectionService.class);

    public static final String UPDATE_DM_ON_START = "searchbox.dm.update.onstart";

From source file com.aol.advertising.qiao.management.metrics.StatsCalculator.java

@ManagedResource(description = "Metrics Calculator")
public class StatsCalculator implements Runnable, ApplicationListener<StatsControl> {
    public enum StatType {
        AVERAGE, RAW, DIFF, GAUGE
    };