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

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

Introduction

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

Usage

From source file com.javaforge.hivemind.acegi.event.ApplicationEventPublisherImpl.java

/**
 * @author James Carman
 */
public class ApplicationEventPublisherImpl implements ApplicationEventPublisher {
    //----------------------------------------------------------------------------------------------------------------------
    // ApplicationEventPublisher Implementation

From source file org.cloudfoundry.identity.uaa.test.TestApplicationEventPublisher.java

public class TestApplicationEventPublisher<T extends ApplicationEvent> extends TestApplicationEventHandler<T>
        implements ApplicationEventPublisher {

    public static <K extends ApplicationEvent> TestApplicationEventPublisher<K> forEventClass(Class<K> eventType) {
        return new TestApplicationEventPublisher<K>(eventType);
    }

From source file com.foo.example.AbstractBean.java

/**
 * 
 */
public abstract class AbstractBean implements Runnable, ApplicationListener<ApplicationEvent>, InitializingBean,
        ApplicationEventPublisher, ApplicationEventMulticaster {
    protected final Log logger = LogFactory.getLog(getClass());

From source file com.frank.search.solr.core.mapping.SolrMappingEventPublisher.java

/**
 * @author Christoph Strobl
 * @since 1.3
 */
public class SolrMappingEventPublisher implements ApplicationEventPublisher {