Class PipeLineExits

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

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=""READY"" state=""SUCCESS"" />
      <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

    • registerPipeLineExit

      public void registerPipeLineExit(PipeLineExit exit)
      PipeLine exits.
    • getExits

      public List<PipeLineExit> getExits()