
jadex.bpmn.model.task.annotation.TaskResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-model-bpmn Show documentation
Show all versions of jadex-model-bpmn Show documentation
Business Process Model and Notation (BPMN) implementation.
package jadex.bpmn.model.task.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marker for agent result field.
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface TaskResult
{
/**
* The argument name.
* Is optional. If not set the field name
* must correspond to the argument name.
*/
public String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy