站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss Seam 1.0.0 API 英文版文档

BeginTask (JBoss Seam API Documentation) - JBoss Seam 1.0.0 API 英文版文档


org.jboss.seam.annotations
Annotation Type BeginTask


@Target(value=METHOD)
@Retention(value=RUNTIME)
@Documented
public @interface BeginTask

Marks a method as causing jBPM task to be resumed. The jBPM ContextInstance is associated with the BUSINESS_PROCESS scope and the TaskInstance is associated with a new conversation.

Note that both BeginTask and StartTask have effect before invocation of the intercepted method in that they are both about setting up appropriate ContextInstance for the current BusinessProcessContext.


Optional Element Summary
 String pageflow
          The name of the jBPM process definition defining the page flow for this conversation.
 String taskIdParameter
          The name of the request parameter under which we should locate the the id of task to be resumed.
 

taskIdParameter

public abstract String taskIdParameter
The name of the request parameter under which we should locate the the id of task to be resumed.

Default:
"taskId"

pageflow

public abstract String pageflow
The name of the jBPM process definition defining the page flow for this conversation.

Default:
""