Package de.xima.fc.interfaces.processing
Interface IWorkflowResponse
-
- All Superinterfaces:
IServletResponse
,Serializable
- All Known Implementing Classes:
TaskExecutionResultWrapper
,WorkflowResponse
public interface IWorkflowResponse extends IServletResponse
Interface for the result of running the workflow.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ETextbausteinMsgCode
getMsgCode()
Vorgang
getVorgang()
boolean
isSuccess()
-
Methods inherited from interface de.xima.fc.interfaces.servlet.IServletResponse
getBinValue, getContentType, getEncoding, getHttpHeader, getHttpStatusCode, getSessionAttributes, getType, getValue, isForceDownload
-
-
-
-
Method Detail
-
isSuccess
boolean isSuccess()
- Returns:
true
indicates that the workflow was run successfully,false
indicates that an error occurred during workflow processing.
-
getMsgCode
ETextbausteinMsgCode getMsgCode()
- Returns:
- The response text that should be sent to the browser as a result of running the workflow. This may be a success, an error, or some other more specific message.
-
-