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
public interface IProcessingResultThe result of running a workflow action.- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StringgetErrorCode()default StringgetErrorMessage()StringgetPlaceholderValue(int index, String key)default Map<String,Serializable>getSessionAttributeMap()A map of key-value pairs with session attributes that are written to theHttpSession.booleangetSuccessValue()intgetValuesCount() 
 - 
 
- 
- 
Method Detail
- 
getPlaceholderValue
String getPlaceholderValue(int index, String key)
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()
- Returns:
 - The number of values the workflow action returned.
 
 
- 
getSuccessValue
boolean getSuccessValue()
- Returns:
 - Whether the workflow action was executed successfully.
 
 
- 
getErrorCode
default String getErrorCode()
- Returns:
 - In case the workflow action was not successful, the error code.
 
 
- 
getErrorMessage
default String getErrorMessage()
- Returns:
 - In case the workflow action was not successful, the error message.
 
 
- 
getSessionAttributeMap
default Map<String,Serializable> getSessionAttributeMap()
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
 
 
 - 
 
 -