jadex.rules.eca.annotations.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-rules-eca Show documentation
Show all versions of jadex-rules-eca Show documentation
Small Java annotation-based event-condition-action rule engine.
package jadex.rules.eca.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Representation of an event that causes the evaluation of a condition.
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface Event
{
/**
* The event type.
*/
public String type() default "";
/**
* The event content.
*/
public String value() default "";
}