Class AProcessingResult
- java.lang.Object
-
- de.xima.fc.bl.fdv.processing.result.AProcessingResult
-
- All Implemented Interfaces:
IProcessingResult
- Direct Known Subclasses:
ProcessingResultFileData
,ProcessingResultFilePath
,ProcessingResultIntValue
,ProcessingResultLongValue
,ProcessingResultMultiValue
,ProcessingResultNumberValue
,ProcessingResultStringValue
,ProcessingResultSuccess
public abstract class AProcessingResult extends Object implements IProcessingResult
-
-
Constructor Summary
Constructors Constructor Description AProcessingResult(boolean successfull)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Serializable>
getSessionAttributeMap()
A map of key-value pairs with session attributes that are written to theHttpSession
.boolean
getSuccessValue()
void
setSessionAttributeMap(Map<String,Serializable> sessionAttributes)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.interfaces.processing.IProcessingResult
getErrorCode, getErrorMessage, getPlaceholderValue, getValuesCount
-
-
-
-
Method Detail
-
getSuccessValue
public boolean getSuccessValue()
- Specified by:
getSuccessValue
in interfaceIProcessingResult
- Returns:
- Whether the workflow action was executed successfully.
-
getSessionAttributeMap
public Map<String,Serializable> getSessionAttributeMap()
Description copied from interface:IProcessingResult
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.- Specified by:
getSessionAttributeMap
in interfaceIProcessingResult
- Returns:
- A
Map
with session attributes to set on theHttpSession
.
-
setSessionAttributeMap
public void setSessionAttributeMap(Map<String,Serializable> sessionAttributes)
-
-