public final class Smf73Record extends SmfRecord
Mapping for SMF type 73 record. Typically you would obtain Smf73Records by reading SmfRecords and using

Smf73Record.from(SmfRecord)

to create the specialized record after determining the record type.

Sections
Most section types are returned in a List containing 0 or more of the section type, depending on the values in the header triplet. If the record is documented as always having exactly 1 of a section e.g. Product Section, the single section is returned.
  • Constructor Details

    • Smf73Record

      public Smf73Record(byte[] data)
      Constructs an SMF73Record from the specified byte array.
      Parameters:
      data - a byte array containing the SMF record data
    • Smf73Record

      public Smf73Record(SmfRecord record)
      Constructs a new Smf73Record from an existing SMF record. The 2 records share the same data byte array.
      Parameters:
      record - an existing SMF record
  • Method Details

    • from

      public static Smf73Record from(SmfRecord record)
      Constructs a new Smf73Record from an existing SMF record. The 2 records share the same data byte array.
      Parameters:
      record - an existing SMF record
    • from

      public static Smf73Record from(byte[] data)
      Constructs an Smf73Record from the specified byte array.
      Parameters:
      data - a byte array containing the SMF record data
    • header

      public Header header()
      Get the header for this record
      Returns:
      SMF type 73 record header
    • productSection

      public ProductSection productSection()
      Get the Product section for this record
      Returns:
      SMF type 73 Product Section
    • channelPathControlSections

      public List<ChannelPathControlSection> channelPathControlSections()
      Get a List containing Channel Path Control sections from the record
      Returns:
      a list of ChannelPathControlSections (possibly empty)
    • channelPathDataSections

      public List<ChannelPathDataSection> channelPathDataSections()
      Get a List containing Channel Path Data sections from the record
      Returns:
      a list of ChannelPathDataSections (possibly empty)
    • extendedChannelPathDataSections

      public List<ExtendedChannelPathDataSection> extendedChannelPathDataSections()
      Get a List containing Extended Channel Path Data sections from the record
      Returns:
      a list of ExtendedChannelPathDataSections (possibly empty)