Class PipeRunResult

java.lang.Object
org.frankframework.core.PipeRunResult

public class PipeRunResult extends Object
The PipeRunResult is a type to store both the result of the processing of a message in doPipe() as well as the exitState.
Responsibility:
  • keeper of the result of the execution of a Pipe
  • keeper of the forward to be returned to the PipeLine

Pipes return a PipeRunResult with the information as above.
Author:
Johan Verrips
See Also:
  • Constructor Details

    • PipeRunResult

      public PipeRunResult()
    • PipeRunResult

      public PipeRunResult(PipeForward forward, Object result)
  • Method Details

    • setResult

      public void setResult(Object result)
    • getResult

      public Message getResult()
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • isSuccessful

      public boolean isSuccessful()
    • getPipeForward

      public PipeForward getPipeForward()
    • setPipeForward

      public void setPipeForward(PipeForward pipeForward)