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 to.sparks.mtgox.event.StreamEvent.java

/**
 *
 * @author SparksG
 */
public abstract class StreamEvent<T> extends ApplicationEvent {

From source file de.thm.arsnova.events.NovaEvent.java

public abstract class NovaEvent extends ApplicationEvent {

    private static final long serialVersionUID = 1L;

    public NovaEvent(Object source) {
        super(source);

From source file io.pivotal.strepsirrhini.chaosloris.data.ScheduleCreatedEvent.java

/**
 * An event signaling that a {@link Schedule} has been created
 */
public final class ScheduleCreatedEvent extends ApplicationEvent {

    private final Schedule schedule;

From source file io.pivotal.strepsirrhini.chaosloris.data.ScheduleDeletedEvent.java

/**
 * An event signaling that a {@link Schedule} has been deleted
 */
public final class ScheduleDeletedEvent extends ApplicationEvent {

    private final Long id;

From source file io.pivotal.strepsirrhini.chaosloris.data.ScheduleUpdatedEvent.java

/**
 * An event signaling that a {@link Schedule} has been updated
 */
public final class ScheduleUpdatedEvent extends ApplicationEvent {

    private final Schedule schedule;

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

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

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

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

From source file io.curly.advisor.integration.event.CreatedReview.java

/**
 * Simple event to be published when a review is created
 *
 * @author Joao Pedro Evangelista
 */
public class CreatedReview extends ApplicationEvent {

From source file io.curly.artifact.integration.event.CreatedArtifactEvent.java

/**
 * @author Joo Evangelista
 */
public class CreatedArtifactEvent extends ApplicationEvent {
    /**
     * Create a new ApplicationEvent.

From source file edu.teilar.jcrop.service.event.KObjectBuildEvent.java

/**
 * 
 * Event in order a kobject to be fully build 
 * When controller is up, the list of all learnign objects is build
 * but the objects are built till their prerequisites. 
 * (no need to build their xmodels from the beginning)