Class ProcessingResultSuccess
- java.lang.Object
-
- de.xima.fc.bl.fdv.processing.result.AProcessingResult
-
- de.xima.fc.bl.fdv.processing.result.ProcessingResultSuccess
-
- All Implemented Interfaces:
IPluginReturnValue
,IPluginProcessingRetVal
,IProcessingResult
,IProcessingResultSuccess
@Deprecated public class ProcessingResultSuccess extends AProcessingResult implements IProcessingResultSuccess
Deprecated.This is part of the old workflow engine. Use the new workflow engine.- Author:
- XIMA MEDIA GmbH
-
-
Constructor Summary
Constructors Constructor Description ProcessingResultSuccess(boolean success)
Deprecated.ProcessingResultSuccess(String errorCode, String errorMessage)
Deprecated.ProcessingResultSuccess(String errorCode, Throwable error)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getErrorCode()
Deprecated.String
getErrorMessage()
Deprecated.String
getPlaceholderValue(int index, String key)
Deprecated.int
getValuesCount()
Deprecated.void
setErrorCode(String errorCode)
Deprecated.void
setErrorMessage(String errorMessage)
Deprecated.-
Methods inherited from class de.xima.fc.bl.fdv.processing.result.AProcessingResult
getSessionAttributeMap, getSuccessValue, setSessionAttributeMap
-
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
getSessionAttributeMap, getSuccessValue
-
-
-
-
Constructor Detail
-
ProcessingResultSuccess
public ProcessingResultSuccess(String errorCode, String errorMessage)
Deprecated.
-
ProcessingResultSuccess
public ProcessingResultSuccess(String errorCode, Throwable error)
Deprecated.
-
ProcessingResultSuccess
public ProcessingResultSuccess(boolean success)
Deprecated.
-
-
Method Detail
-
getPlaceholderValue
public String getPlaceholderValue(int index, String key)
Deprecated.Description copied from interface:IProcessingResult
In general, the result of an action is aList
ofMap
s. This return the value at a given index and key.- Specified by:
getPlaceholderValue
in interfaceIProcessingResult
- 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
public int getValuesCount()
Deprecated.- Specified by:
getValuesCount
in interfaceIProcessingResult
- Returns:
- The number of values the workflow action returned.
-
getErrorCode
public String getErrorCode()
Deprecated.- Specified by:
getErrorCode
in interfaceIProcessingResult
- Returns:
- the errorCode
-
setErrorCode
public void setErrorCode(String errorCode)
Deprecated.- Parameters:
errorCode
- the errorCode to set
-
getErrorMessage
public String getErrorMessage()
Deprecated.- Specified by:
getErrorMessage
in interfaceIProcessingResult
- Returns:
- the errorMessage
-
setErrorMessage
public void setErrorMessage(String errorMessage)
Deprecated.- Parameters:
errorMessage
- the errorMessage to set
-
-