Class PipeLineExits

java.lang.Object
org.frankframework.core.PipeLineExits

@FrankDocGroup(OTHER) public class PipeLineExits extends Object
Pipeline exit container in which all (required) Exits must be defined. Multiple exits may be provided each with their unique name.

If no exits are specified, a default one is created with name="READY" and state="SUCCESS".

example:

 <Exits>
    <Exit name="{@value PipeLine#DEFAULT_SUCCESS_EXIT_NAME}" state="{@value PipeLine.ExitState#SUCCESS_EXIT_STATE}" />
    <Exit name="Created" state="ERROR" code="201" empty="true" />
    <Exit name="NotModified" state="ERROR" code="304" empty="true" />
    <Exit name="BadRequest" state="ERROR" code="400" empty="true" />
    <Exit name="NotAuthorized" state="ERROR" code="401" empty="true" />
    <Exit name="NotAllowed" state="ERROR" code="403" empty="true" />
    <Exit name="Teapot" state="SUCCESS" code="418" />
    <Exit name="ServerError" state="ERROR" code="500" />
 </Exits>
 
  • Constructor Details

    • PipeLineExits

      public PipeLineExits()
  • Method Details