Class FixedResultSender

All Implemented Interfaces:
IConfigurable, IConfigurationAware, INamedObject, IScopeProvider, ISender, ISenderWithParameters, IWithParameters, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware

@Category("Basic") public class FixedResultSender extends SenderWithParametersBase
FixedResultSender, same behaviour as FixedResultPipe, but now as a ISender.
Since:
4.9
Author:
Gerrit van Brakel
Parameters
Any parameters defined on the sender will be used for replacements. Each occurrence of ${name-of-parameter} in the file fileName will be replaced by its corresponding value-of-parameter. This works only with files, not with values supplied in attribute returnString.
  • Constructor Details

    • FixedResultSender

      public FixedResultSender()
  • Method Details

    • configure

      public void configure() throws ConfigurationException
      Description copied from interface: ISender
      configure() is called once at startup of the framework in the configure method of the owner of this sender. Purpose of this method is to check whether the static configuration of the sender is correct. As much as possible class-instantiating should take place in the configure() or open() method, to improve performance.
      Specified by:
      configure in interface IConfigurable
      Specified by:
      configure in interface ISender
      Overrides:
      configure in class SenderWithParametersBase
      Throws:
      ConfigurationException
    • sendMessage

      public SenderResult sendMessage(Message message, PipeLineSession session) throws SenderException, TimeoutException
      Description copied from interface: ISender
      Send a message to some destination (as configured in the Sender object). This method may only be called after the configure() method is called.

      The following table shows the difference between synchronous and a-synchronous senders:

       synchronousa-synchronous
      ISender.isSynchronous() returnstruefalse
      return value of sendMessage() isthe reply-messagethe messageId of the message sent
      the correlationID specified with sendMessage()may be ignoredis sent with the message
      a {link TimeOutException}may be thrown if a timeout occurs waiting for a replyshould not be expected

      Multiple objects may try to call this method at the same time, from different threads. Implementations of this method should therefore be thread-safe, or synchronized.

      Throws:
      SenderException
      TimeoutException
    • isSynchronous

      public boolean isSynchronous()
      Description copied from interface: ISender
      When true, the result of sendMessage is the reply of the request.
    • setSubstituteVars

      public void setSubstituteVars(boolean substitute)
      should values between ${ and } be resolved from the pipelinesession
      Default value
      false
    • setFilename

      public void setFilename(String filename)
      Name of the file containing the result message
    • setReturnString

      public void setReturnString(String returnString)
      returned message
    • setReplaceFrom

      public void setReplaceFrom(String replaceFrom)
    • setReplaceTo

      public void setReplaceTo(String replaceTo)
    • setStyleSheetName

      public void setStyleSheetName(String styleSheetName)
    • getFilename

      public String getFilename()
    • getReturnString

      public String getReturnString()
    • isSubstituteVars

      public boolean isSubstituteVars()
    • getReplaceFrom

      public String getReplaceFrom()
    • getReplaceTo

      public String getReplaceTo()
    • getStyleSheetName

      public String getStyleSheetName()