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 fm.push.service.QuoteService.java

@Service
public class QuoteService implements ApplicationListener<BrokerAvailabilityEvent> {

    private static Log logger = LogFactory.getLog(QuoteService.class);

    private final MessageSendingOperations<String> messagingTemplate;

From source file gov.nih.nci.cabig.caaers.event.ContextRefreshEventListener.java

/**
 * The Data Migration related tasks are initiated from here.
 *
 * @author: Biju Joseph
 */
public class ContextRefreshEventListener implements ApplicationListener {

From source file gov.nih.nci.cabig.caaers.web.listener.AbstractEventListener.java

/**
 * Refactored PulledUp
 * 
 * @author: Biju Joseph
 */
public abstract class AbstractEventListener implements ApplicationListener {

From source file gov.nih.nci.cabig.caaers.web.security.LoggerListener.java

/**
 * Outputs authentication-related application events to Commons Logging.
 * <P>
 * All authentication events are logged at the warning level.
 * </p>
 * 

From source file hotbeans.support.FileSystemHotBeanModuleRepository.java

/**
 * File system based HotBeanModuleRepository implementation.
 * 
 * @author Tobias Lfstrand
 */
public class FileSystemHotBeanModuleRepository extends PeriodicCheckHotBeanModuleRepository

From source file my.cool.app.service.QuoteService.java

@Service
public class QuoteService implements ApplicationListener<BrokerAvailabilityEvent> {

    private static Log logger = LogFactory.getLog(QuoteService.class);

    private final MessageSendingOperations<String> messagingTemplate;

From source file my.cool.app.service.TradeService.java

@Service
public class TradeService implements ApplicationListener<BrokerAvailabilityEvent> {

    private static Log logger = LogFactory.getLog(TradeService.class);

    @Autowired

From source file net.firejack.platform.installation.processor.InstallSlaveProcessor.java

@Component
public class InstallSlaveProcessor implements ApplicationListener<InstallSlaveEvent> {
    private static final Logger logger = Logger.getLogger(InstallSlaveProcessor.class);

    @Autowired
    private OpenFlameDataSource source;

From source file net.firejack.platform.installation.processor.OFRInstallProcessor.java

@SuppressWarnings("unused")
@Component("OFRInstallProcessor")
public class OFRInstallProcessor
        implements FilenameFilter, ApplicationListener<CompleteInitEvent>, CommandListener {
    private static final Logger logger = Logger.getLogger(OFRInstallProcessor.class);
    private static final String OFR = "ofr";

From source file net.firejack.platform.installation.processor.TemplateApplicationProcessor.java

@Component
public class TemplateApplicationProcessor implements ApplicationListener<TemplateEvent> {
    private static final Logger logger = Logger.getLogger(TemplateApplicationProcessor.class);
    @Autowired
    private PackageInstallationService packageInstallationService;
    @Autowired