Package de.xima.fc.mdl.form
Class FormProcessData
- java.lang.Object
-
- de.xima.fc.mdl.form.FormProcessData
-
- All Implemented Interfaces:
Serializable
public class FormProcessData extends Object implements Serializable
Class with data for an form-process-request- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<IMapDiff<Serializable,Serializable>>
frqSessionAttributesDiff
protected boolean
processCanceled
protected boolean
responseCanceled
protected List<IMapDiff<String,Serializable>>
sessionAttributesDiff
protected IWorkflowResponse
workflowResponse
-
Constructor Summary
Constructors Constructor Description FormProcessData()
-
Method Summary
-
-
-
Field Detail
-
workflowResponse
protected IWorkflowResponse workflowResponse
-
sessionAttributesDiff
protected List<IMapDiff<String,Serializable>> sessionAttributesDiff
-
frqSessionAttributesDiff
protected List<IMapDiff<Serializable,Serializable>> frqSessionAttributesDiff
-
processCanceled
protected boolean processCanceled
-
responseCanceled
protected boolean responseCanceled
-
-
Method Detail
-
getWorkflowResponse
@Deprecated public IWorkflowResponse getWorkflowResponse()
Deprecated.
-
setWorkflowResponse
@Deprecated public void setWorkflowResponse(IWorkflowResponse workflowResponse)
Deprecated.
-
getTaskExecutionResult
public IRemoteEventExecutionResult getTaskExecutionResult()
- Returns:
- The result of running the new workflow engine.
-
setTaskExecutionResult
public void setTaskExecutionResult(IRemoteEventExecutionResult taskExecutionResult)
- Parameters:
taskExecutionResult
- The result of running the new workflow engine.
-
isProcessCanceled
public boolean isProcessCanceled()
-
setProcessCanceled
public void setProcessCanceled(boolean processCanceled)
-
isResponseCanceled
public boolean isResponseCanceled()
-
setResponseCanceled
public void setResponseCanceled(boolean responseCanceled)
-
getSessionAttributes
@Deprecated public Map<String,Serializable> getSessionAttributes()
Deprecated.
-
putSessionAttributes
@Deprecated public void putSessionAttributes(Map<String,Serializable> sessionAttributes)
Deprecated.
-
getSessionAttributesDiff
public List<IMapDiff<String,Serializable>> getSessionAttributesDiff()
- Returns:
- The diff to apply to the current session attributes.
-
getFrqSessionAttributesDiff
public List<IMapDiff<Serializable,Serializable>> getFrqSessionAttributesDiff()
- Returns:
- The diff to apply to the current FRQ session attributes.
-
addSessionAttributesDiff
public void addSessionAttributesDiff(IMapDiff<String,Serializable> sessionAttributesDiff)
- Parameters:
sessionAttributesDiff
- Adds a map diff to apply to the session attributes.
-
addFrqSessionAttributesDiff
public void addFrqSessionAttributesDiff(IMapDiff<Serializable,Serializable> frqSessionAttributesDiff)
- Parameters:
frqSessionAttributesDiff
- Adds a map diff to apply to the FRQ session attributes.
-
isUsesNewWorkflow
public boolean isUsesNewWorkflow()
-
setUsesNewWorkflow
public void setUsesNewWorkflow(boolean usesNewWorkflow)
-
getPreProcessResults
public Map<String,IPluginFormPreProcessRetVal> getPreProcessResults()
-
setPreProcessResults
public void setPreProcessResults(Map<String,IPluginFormPreProcessRetVal> preProcessResults)
-
getPreResponseResults
public Map<String,IPluginFormPreRespondRetVal> getPreResponseResults()
-
setPreResponseResults
public void setPreResponseResults(Map<String,IPluginFormPreRespondRetVal> preResponseResults)
-
-