Class DelphiStringRecordReaderFactory

java.lang.Object
org.frankframework.batch.DelphiStringRecordReaderFactory
All Implemented Interfaces:
IReaderFactory

@Deprecated @ConfigurationWarning("Warning: non-maintained functionality.") public class DelphiStringRecordReaderFactory extends Object implements IReaderFactory
Deprecated.
Warning: non-maintained functionality.
IReaderFactory that provides a reader that reads Delphi records containing Strings.
Since:
4.10
Author:
Gerrit van Brakel
  • Constructor Details

    • DelphiStringRecordReaderFactory

      public DelphiStringRecordReaderFactory()
      Deprecated.
  • Method Details

    • configure

      public void configure() throws ConfigurationException
      Deprecated.
      Specified by:
      configure in interface IReaderFactory
      Throws:
      ConfigurationException
    • getReader

      public Reader getReader(InputStream in, String charset, String streamId, PipeLineSession session) throws SenderException
      Deprecated.
      Description copied from interface: IReaderFactory
      Obtain a Reader that reads lines in the given characterset.
      Specified by:
      getReader in interface IReaderFactory
      Throws:
      SenderException
    • setSeparator

      public void setSeparator(String string)
      Deprecated.
      separator placed between each string read
      Default value
      |
    • getSeparator

      public String getSeparator()
      Deprecated.
    • setStringLength

      public void setStringLength(int i)
      Deprecated.
      the maximum length of each string. each string is preceded by a one byte length indication.
      Default value
      50
    • getStringLength

      public int getStringLength()
      Deprecated.
    • setStringsPerRecord

      public void setStringsPerRecord(int i)
      Deprecated.
      the number of strings read for each record. 0 means file consists of one logical record
      Default value
      0
    • getStringsPerRecord

      public int getStringsPerRecord()
      Deprecated.
    • setSeparatorReplacement

      public void setSeparatorReplacement(String string)
      Deprecated.
      replacement character, used when separator is found in string read
      Default value
      _
    • getSeparatorReplacement

      public String getSeparatorReplacement()
      Deprecated.