| java.lang.Object org.apache.cocoon.components.flow.FlowHelper
All known Subclasses: org.apache.cocoon.components.flow.javascript.JavaScriptFlowHelper,
FlowHelper | public class FlowHelper (Code) | | Provides the interface between the flow controller layer and the
view layer. A view can obtain the context object sent by a flow
script and the current web continuation, if any.
|
getContextObject | final public static Object getContextObject(Map objectModel)(Code) | | Get the flow context object associated with the current request
Parameters: objectModel - The Cocoon Environment's object model The context object |
getWebContinuation | final public static WebContinuation getWebContinuation(Map objectModel)(Code) | | Get the web continuation associated with the current request
Parameters: objectModel - The Cocoon Environment's object model The web continuation |
setContextObject | final public static void setContextObject(Map objectModel, Object obj)(Code) | | Set the flow context object associated with the current request
Parameters: objectModel - The Cocoon Environment's object model Parameters: obj - The context object |
setWebContinuation | final public static void setWebContinuation(Map objectModel, WebContinuation kont)(Code) | | Set the web continuation associated with the current request
Parameters: objectModel - The Cocoon Environment's object model Parameters: kont - The web continuation |
|
|