Package nl.nn.adapterframework.core
Class PipeForwards
- java.lang.Object
-
- nl.nn.adapterframework.core.PipeForwards
-
public class PipeForwards extends Object
Optional element in a pipeline. Global forwards that will be added to every pipe, when the forward name has not been explicitly set. For example the<forward name="exception" path="error_exception" />
, which will add the 'exception
' forward to every pipe in the pipeline.
-
-
Constructor Summary
Constructors Constructor Description PipeForwards()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PipeForward>
getForwards()
void
registerForward(PipeForward forward)
Defines what pipe or exit to execute next.
-
-
-
Method Detail
-
registerForward
public void registerForward(PipeForward forward)
Defines what pipe or exit to execute next. When the execution of a pipe is done, the pipe looks up the next pipe or exit to execute. SeeForward
for more information.
-
getForwards
public List<PipeForward> getForwards()
-
-