org.springframework.data.rest.core.event.RepositoryEvent.java Source code

Java tutorial

Introduction

Here is the source code for org.springframework.data.rest.core.event.RepositoryEvent.java

Source

package org.springframework.data.rest.core.event;

import org.springframework.context.ApplicationEvent;

/**
 * Abstract base class for events emitted by the REST exporter.
 * 
 * @author Jon Brisbin
 */
public abstract class RepositoryEvent extends ApplicationEvent {

    private static final long serialVersionUID = -966689410815418259L;

    protected RepositoryEvent(Object source) {
        super(source);
    }
}