|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.faces.flow.builder.FlowCallBuilder
public abstract class FlowCallBuilder
Create a flow call node in the current Flow
.
Constructor Summary | |
---|---|
FlowCallBuilder()
|
Method Summary | |
---|---|
abstract FlowCallBuilder |
flowReference(String flowDocumentId,
String flowId)
Define the flow reference of the called flow. |
abstract FlowCallBuilder |
markAsStartNode()
Mark this node as the start node in the flow. |
abstract FlowCallBuilder |
outboundParameter(String name,
String value)
Define an outbound parameter for the flow call. |
abstract FlowCallBuilder |
outboundParameter(String name,
javax.el.ValueExpression value)
Define an outbound parameter for the flow call. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FlowCallBuilder()
Method Detail |
---|
public abstract FlowCallBuilder flowReference(String flowDocumentId, String flowId)
Define the flow reference of the called flow.
flowDocumentId
- the document id of the called flow. May not be null
,
but may be the empty string.flowId
- the id of the called flow. May not be null
NullPointerException
- if any of the parameters are null
public abstract FlowCallBuilder outboundParameter(String name, javax.el.ValueExpression value)
Define an outbound parameter for the flow call.
name
- the name of the parametervalue
- the value of the parameter
NullPointerException
- if any of the parameters are null
public abstract FlowCallBuilder outboundParameter(String name, String value)
Define an outbound parameter for the flow call.
name
- the name of the parametervalue
- the value of the parameter
NullPointerException
- if any of the parameters are null
public abstract FlowCallBuilder markAsStartNode()
NodeBuilder
Mark this node as the start node in the flow. Any other node that had been marked as the start node will no longer be the start node.
markAsStartNode
in interface NodeBuilder
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |