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 net.firejack.platform.installation.processor.UpgradeMetadataProcessor.java

@SuppressWarnings("unused")
@Component
public class UpgradeMetadataProcessor implements ApplicationListener<OpenflameUpgradeEvent> {

    private static final Logger logger = Logger.getLogger(UpgradeMetadataProcessor.class);

From source file net.firejack.platform.web.statistics.engine.BufferCleaner.java

public class BufferCleaner implements ApplicationListener<BufferEvent> {

    private static final String MSG_ERROR_ON_TRACKS_SAVE = "Error appeared on save DetailedTracks to DB.";
    private static final String MSG_ERROR_BUFFER_CLEANSING_HAS_INTERRUPTED = "The buffer cleansing has interrupted!";

    private static final Logger logger = Logger.getLogger(BufferCleaner.class);

From source file net.noday.cat.listener.ArticleSaveNotifier.java

/**
 * cat DwzManager
 *
 * @author <a href="http://www.noday.net">Noday</a>
 * @version , 2012-12-28
 * @since 

From source file net.sf.housekeeper.swing.CategoriesView.java

/**
 * Shows a tree of categories.
 * 
 * @author Adrian Gygax
 * @version $Revision$, $Date$
 */

From source file net.sf.housekeeper.swing.category.CategoriesView.java

/**
 * Shows a tree of categories.
 * 
 * @author Adrian Gygax
 * @version $Revision$, $Date$
 */

From source file net.sf.housekeeper.swing.item.ItemsView.java

/**
 * A customizable view for any type of {@link net.sf.housekeeper.domain.Item}s.
 * 
 * @author Adrian Gygax
 * @version $Revision$, $Date$
 */

From source file net.sf.housekeeper.swing.SaveCommand.java

/**
 * Command for saving data to persistent storage.
 * 
 * @author Adrian Gygax
 * @version $Revision$, $Date$
 */

From source file net.shopxx.service.impl.DaemonServiceImpl.java

@Service("daemonServiceImpl")
public class DaemonServiceImpl implements ApplicationListener<ContextRefreshedEvent> {

    public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
        try {
            ClassUtils.getClass(StringUtils

From source file ome.security.auth.LoginAttemptListener.java

/**
 * Listens for any {@link LoginAttemptMessage}. If there are more than some
 * number of failures, then throttling beings to reduce the number of possible
 * checks. The next successful check resets the count to 0. The state is not
 * stored between server restarts.
 *