public interface PipelineResult
An interface which provides access to the error data for a pipeline execution.
PipelineChain
,
PipelineProcessor
,
PipelineResultImpl
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CLASS_VERSION |
Modifier and Type | Method and Description |
---|---|
void |
addError(java.lang.Object pKey,
java.lang.Object pError)
Adds an error object mapped to pKey.
|
void |
copyInto(PipelineResult pResult)
Copies the data from one PipelineResult to another.
|
java.lang.Object |
getError(java.lang.Object pKey)
Returns the object associated with pKey.
|
java.lang.Object[] |
getErrorKeys()
Returns an array of key objects which exist in the PipelineResultable.
|
java.lang.Object[] |
getErrors()
Returns an array of error objects which exist in the PipelineResultable.
|
boolean |
hasErrors()
Returns true if at least one error object exists, false otherwise.
|
void |
removeError(java.lang.Object pKey)
Removes the error object mapped to pKey from the PipelineResultable.
|
static final java.lang.String CLASS_VERSION
java.lang.Object getError(java.lang.Object pKey)
void addError(java.lang.Object pKey, java.lang.Object pError)
java.lang.Object[] getErrorKeys()
java.lang.Object[] getErrors()
boolean hasErrors()
void removeError(java.lang.Object pKey)
void copyInto(PipelineResult pResult)