Class FixedForwardPipe

All Implemented Interfaces:
HasTransactionAttribute, IConfigurable, IConfigurationAware, IForwardTarget, INamedObject, IPipe, IScopeProvider, IWithParameters, EventThrowing, HasStatistics, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware
Direct Known Subclasses:
ApiPrincipalPipe, Base64Pipe, BytesOutputPipe, ChecksumPipe, CollectorPipeBase, CompressPipe, CounterSwitchPipe, CredentialCheckingPipe, CrlPipe, CsvParserPipe, DelayPipe, DomainTransformerPipe, EchoPipe, EscapePipe, EtagHandlerPipe, ExceptionPipe, FixedResultPipe, GetFromSession, GetPrincipalPipe, HashPipe, IncreaseIntegerPipe, IsUserInRolePipe, JsonPipe, JsonWellFormedChecker, JwtPipe, LdapChallengePipe, LdapQueryPipeBase, LogContextPipe, MessageSendingPipe, PasswordGeneratorPipe, PasswordHashPipe, PGPPipe, PostboxRetrieverPipe, PutInSession, PutParametersInSession, PutSystemDateInSession, RemoveCacheKeyPipe, RemoveFromSession, ReplacerPipe, SignaturePipe, SizePipe, SkipPipe, SoapWrapperPipe, Stream2StringPipe, StreamPipe, Text2XmlPipe, TextSplitterPipe, TimeoutGuardPipe, UnzipPipe, UUIDGeneratorPipe, ValidatorBase, WsdlGeneratorPipe, XmlBuilderPipe, XmlWellFormedChecker, XQueryPipe, XsltPipe

public abstract class FixedForwardPipe extends AbstractPipe
Provides a base-class for a Pipe that always has the same forward. Ancestor classes should call super.configure() in their configure()-methods.
Author:
Gerrit van Brakel
  • Constructor Details

    • FixedForwardPipe

      public FixedForwardPipe()
  • Method Details

    • configure

      public void configure() throws ConfigurationException
      checks for correct configuration of forward
      Specified by:
      configure in interface IConfigurable
      Specified by:
      configure in interface IPipe
      Overrides:
      configure in class AbstractPipe
      Throws:
      ConfigurationException
    • skipPipe

      public boolean skipPipe(Message input, PipeLineSession session) throws PipeRunException
      called by InputOutputPipeProcessor to check if the pipe needs to be skipped.
      Throws:
      PipeRunException
    • getParameterValue

      protected String getParameterValue(ParameterValueList pvl, String parameterName)
    • setSkipOnEmptyInput

      public void setSkipOnEmptyInput(boolean b)
      If set, the processing continues directly at the forward of this pipe, without executing the pipe itself, if the input is empty
      Default value
      false
    • setIfParam

      public void setIfParam(String string)
      If set, this pipe is only executed when the value of parameter with name ifParam equals ifValue (otherwise this pipe is skipped)
    • setIfValue

      public void setIfValue(String string)
      See ifParam
    • setOnlyIfSessionKey

      public void setOnlyIfSessionKey(String onlyIfSessionKey)
      Key of session variable to check if action must be executed. The pipe is only executed if the session variable exists and is not null
    • setOnlyIfValue

      public void setOnlyIfValue(String onlyIfValue)
      Value of session variable 'onlyIfSessionKey' to check if action must be executed. The pipe is only executed if the session variable has the specified value
    • setUnlessSessionKey

      public void setUnlessSessionKey(String unlessSessionKey)
      Key of session variable to check if action must be executed. The pipe is not executed if the session variable exists and is not null
    • setUnlessValue

      public void setUnlessValue(String unlessValue)
      Value of session variable 'unlessSessionKey' to check if action must be executed. The pipe is not executed if the session variable has the specified value
    • getSuccessForward

      public PipeForward getSuccessForward()
    • isSkipOnEmptyInput

      public boolean isSkipOnEmptyInput()
    • getIfParam

      public String getIfParam()
    • getIfValue

      public String getIfValue()
    • getOnlyIfSessionKey

      public String getOnlyIfSessionKey()
    • getOnlyIfValue

      public String getOnlyIfValue()
    • getUnlessSessionKey

      public String getUnlessSessionKey()
    • getUnlessValue

      public String getUnlessValue()