| com.opensymphony.workflow.ConditionRemote
ConditionRemote | public interface ConditionRemote extends Remote(Code) | | Interface that must be implemented to define a java-based remote condition in your workflow definition.
author: Patrick Lightbody |
Method Summary | |
public boolean | passesCondition(Map transientVars, Map args, PropertySet ps) Determines if a condition should signal pass or fail.
Parameters: transientVars - Variables that will not be persisted. |
passesCondition | public boolean passesCondition(Map transientVars, Map args, PropertySet ps) throws RemoteException(Code) | | Determines if a condition should signal pass or fail.
Parameters: transientVars - Variables that will not be persisted. These include inputsgiven in the Workflow.initialize and Workflow.doAction method calls.There are two special variable names: entry (object type:com.opensymphony.workflow.spi.WorkflowEntry) and context(object type: com.opensymphony.workflow.WorkflowContext).Also, any variable set as a com.opensymphony.workflow.Register), will also beavailable in the transient map, no matter what. These transient variables only last throughthe method call that they were invoked in, such as Workflow.initializeand Workflow.doAction. Parameters: args - The properties for this function invocation. Properties are createdfrom arg nested elements within the xml, an arg element takes in a name attributewhich is the properties key, and the CDATA text contents of the element map tothe property value. Parameters: ps - The persistent variables that are associated with the currentinstance of the workflow. Any change made to this will be seen on the nextfunction call in the workflow lifetime. |
|
|