All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.bpmn.model.task.annotation.TaskArgument Maven / Gradle / Ivy

There is a newer version: 4.0.267
Show newest version
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 argument field.
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface TaskArgument
{
	/**
	 *  The argument name.
	 *  Is optional. If not set the field name
	 *  must correspond to the argument name.
	 */
	public String value() default "";
	
//	/**
//	 *  The argument conversion expression.
//	 *  
//	 *  The coversion expression can refer to the 
//	 *  originally provided value by using the reserved
//	 *  variable $value.
//	 *  
//	 *  Is optional. 
//	 */
//	public String convert() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy