
org.yestech.event.event.IEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yesevent Show documentation
Show all versions of yesevent Show documentation
Java Based Event framework that can be used with a Dependency Injection system or without. Currently
Spring and Guice are supported. The Framework is pluggable with implementation that support direct routing and integration
of apache camel to handle the routing of events.
The newest version!
/*
* Copyright LGPL3
* YES Technology Association
* http://yestech.org
*
* http://www.opensource.org/licenses/lgpl-3.0.html
*/
package org.yestech.event.event;
import java.io.Serializable;
/**
* Interface all events should implement. If the event wishes to
* be explicit on the type of result it requires use the {@link org.yestech.event.annotation.EventResultType} annotation.
*
* @see org.yestech.event.annotation.EventResultType
* @see org.yestech.event.listener.IListener
*/
public interface IEvent extends Serializable
{
/**
* Returns a unique name for the event.
*
* @return the name
*/
String getEventName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy