jadex.rules.eca.annotations.Action 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 action.
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface Action
{
/**
* The action name.
*/
public String value();
}