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 com.netflix.spinnaker.kork.eureka.EurekaStatusChangedEvent.java

public class EurekaStatusChangedEvent extends ApplicationEvent {
    public EurekaStatusChangedEvent(StatusChangeEvent source) {
        super(source);
    }

    public StatusChangeEvent getStatusChangeEvent() {

From source file com.netflix.spinnaker.kork.eureka.RemoteStatusChangedEvent.java

public class RemoteStatusChangedEvent extends ApplicationEvent {
    public RemoteStatusChangedEvent(StatusChangeEvent source) {
        super(source);
    }

    @Override

From source file org.ameba.event.EntityCreatedEvent.java

/**
 * Created by axbsi01 on 07.05.2015.
 */
public class EntityCreatedEvent<T extends AbstractBase> extends ApplicationEvent {

    /**

From source file com.codecrate.shard.ui.command.ImportDatasetEvent.java

public class ImportDatasetEvent extends ApplicationEvent {
    private File selectedDirectory;

    public ImportDatasetEvent(Object source) {
        super(source);
    }

From source file io.lavagna.common.DatabaseMigrationDoneEvent.java

public class DatabaseMigrationDoneEvent extends ApplicationEvent {

    private static final long serialVersionUID = 4359436382324341606L;

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

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

/**
 * Created by christian.weber on 05.11.2014.
 */
public class PersistApplicationEvent extends ApplicationEvent {

    public PersistApplicationEvent(Execution source) {

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

/**
 * Created by christian.weber on 05.11.2014.
 */
public class SynchronizeApplicationEvent extends ApplicationEvent {

    public SynchronizeApplicationEvent(Execution source) {

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

/**
 * Created by christian.weber on 05.11.2014.
 */
public class TokenApplicationEvent extends ApplicationEvent {

    public TokenApplicationEvent(Execution source) {

From source file com.kixeye.chassis.support.events.LoggingReloadedApplicationEvent.java

/**
 * An event that gets published when logging is reloaded.
 * 
 * @author ebahtijaragic
 */
public class LoggingReloadedApplicationEvent extends ApplicationEvent {

From source file io.curly.gathering.item.AddableItemEvent.java

/**
 * @author Joo Pedro Evangelista
 */
public final class AddableItemEvent extends ApplicationEvent {

    private final AddableItem source;