Example usage for org.springframework.context ApplicationEvent subclass-usage

List of usage examples for org.springframework.context ApplicationEvent subclass-usage

Introduction

In this page you can find the example usage for org.springframework.context ApplicationEvent subclass-usage.

Usage

From source file org.arrow.runtime.message.event.StartApplicationEvent.java

/**
 * {@link ApplicationEvent} instance for start events.
 *
 * @author christian.weber
 * @since 1.0.0
 */

From source file com.agileapes.webexport.event.CrawlerEvent.java

/**
 * This is the base class for all the events in this eco-system. This class is just to add
 * another level of indirection.
 *
 * @author Mohammad Milad Naseri (m.m.naseri@gmail.com)
 * @since 1.0 (2013/2/13, 16:39)

From source file org.arrow.runtime.message.event.CancelApplicationEvent.java

/**
 * {@link org.springframework.context.ApplicationEvent} instance for error events.
 *
 * @author christian.weber
 * @since 1.0.0
 */

From source file org.arrow.runtime.message.event.TimerApplicationEvent.java

/**
 * {@link ApplicationEvent} instance for timer events.
 *
 * @author christian.weber
 * @since 1.0.0
 */

From source file org.springsource.restbucks.payment.OrderPaidEvent.java

/**
 * {@link ApplicationEvent} to be thrown when an {@link Order} has been payed.
 * 
 * @author Oliver Gierke
 */
@Getter

From source file com.kazuki43zoo.jpetstore.component.event.EntityChangedEvent.java

/**
 * @author Kazuki Shimizu
 */
@Getter
public class EntityChangedEvent<T extends Serializable> extends ApplicationEvent {

From source file org.trpr.platform.core.impl.event.PlatformApplicationEvent.java

/**
 * The <code>PlatformApplicationEvent</code> is a concrete Spring ApplicationEvent sub-type that wraps a PlatformEvent.
 * Also supports specifying an endpoint URI as destination for this event.
 * 
 * @see org.springframework.context.ApplicationEvent
 * 

From source file org.homiefund.api.events.UserJoinsHome.java

/**
 * Created by Dominik Szalai - emptulik at gmail.com on 27.9.2016.
 */
@Getter
public class UserJoinsHome extends ApplicationEvent {
    private UserDTO user;

From source file springfox.documentation.schema.configuration.ObjectMapperConfigured.java

public class ObjectMapperConfigured extends ApplicationEvent {
    private final ObjectMapper objectMapper;

    /**
     * Create a new ApplicationEvent.
     *

From source file org.vaadin.spring.security.util.SuccessfulLoginEvent.java

/**
 * Event that can be published using either the Spring event publisher or the Vaadin4Spring event bus when a user
 * logs in successfully. See the <b>security-sample-managed</b> sample application for an example of how it can be used.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */