Package de.xima.fc.interfaces.processing
Interface IProcessingResult
-
- All Known Subinterfaces:
IPluginProcessingRetVal,IProcessingResultAktionsID,IProcessingResultFileData,IProcessingResultFilePath,IProcessingResultHTML,IProcessingResultIntValue,IProcessingResultLongValue,IProcessingResultMultiValue,IProcessingResultNumberValue,IProcessingResultStringValue,IProcessingResultSuccess,IProcessingResultTemplate,IProcessingResultVorgangsID,IProcessingResultWeiterleitung
- All Known Implementing Classes:
AProcessingResult,ProcessingResultAktionsID,ProcessingResultFileData,ProcessingResultFilePath,ProcessingResultHTML,ProcessingResultIntValue,ProcessingResultLongValue,ProcessingResultMultiValue,ProcessingResultMultiValueAndFilePath,ProcessingResultNumberValue,ProcessingResultRedirect,ProcessingResultStringValue,ProcessingResultStringValueAndFilePath,ProcessingResultSuccess,ProcessingResultTemplate,ProcessingResultVorgangsID
@Deprecated public interface IProcessingResult
Deprecated.Use the new workflow engine (IWorkflowEventRunner).The result of running a workflow action.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default StringgetErrorCode()Deprecated.default StringgetErrorMessage()Deprecated.StringgetPlaceholderValue(int index, String key)Deprecated.default Map<String,Serializable>getSessionAttributeMap()Deprecated.A map of key-value pairs with session attributes that are written to theHttpSession.booleangetSuccessValue()Deprecated.intgetValuesCount()Deprecated.
-
-
-
Method Detail
-
getPlaceholderValue
String getPlaceholderValue(int index, String key)
Deprecated.In general, the result of an action is aListofMaps. This return the value at a given index and key.- Parameters:
index- Index at which to retrieve the processing result value.key- Key at which to retrieve the processing result value.- Returns:
- The processing result value at the given index and key.
-
getValuesCount
int getValuesCount()
Deprecated.- Returns:
- The number of values the workflow action returned.
-
getSuccessValue
boolean getSuccessValue()
Deprecated.- Returns:
- Whether the workflow action was executed successfully.
-
getErrorCode
default String getErrorCode()
Deprecated.- Returns:
- In case the workflow action was not successful, the error code.
-
getErrorMessage
default String getErrorMessage()
Deprecated.- Returns:
- In case the workflow action was not successful, the error message.
-
getSessionAttributeMap
default Map<String,Serializable> getSessionAttributeMap()
Deprecated.A map of key-value pairs with session attributes that are written to theHttpSession. When the session already contains a value for a parameter, it is overwritten.- Returns:
- A
Mapwith session attributes to set on theHttpSession. - Since:
- 6.1
-
-