Interface SvLoadLogRecord


public interface SvLoadLogRecord
Record of a Stored Value load log.
Since:
1.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets the load amount value
    int
    Gets the SV balance value
    byte[]
    Gets the free bytes as an array of bytes
    byte
    Gets the KVC of the load key (as given in the last SV Reload)
    byte[]
    Gets the load date as an array of bytes
    byte[]
    Gets the load time as an array of bytes
    byte[]
    Gets the raw data of the SV load log record.
    byte[]
    Gets the SAM ID as an array of bytes
    int
    Gets the SAM transaction number value as an int
    int
    Gets the SV transaction number value as an int
  • Method Details

    • getRawData

      byte[] getRawData()
      Gets the raw data of the SV load log record.
      Returns:
      A byte array.
      Since:
      1.0.0
    • getLoadDate

      byte[] getLoadDate()
      Gets the load date as an array of bytes
      Returns:
      A 2-byte byte array
      Since:
      1.0.0
    • getLoadTime

      byte[] getLoadTime()
      Gets the load time as an array of bytes
      Returns:
      A 2-byte byte array
      Since:
      1.0.0
    • getAmount

      int getAmount()
      Gets the load amount value
      Returns:
      An int
      Since:
      1.0.0
    • getBalance

      int getBalance()
      Gets the SV balance value
      Returns:
      An int
      Since:
      1.0.0
    • getFreeData

      byte[] getFreeData()
      Gets the free bytes as an array of bytes
      Returns:
      A 2-byte byte array
      Since:
      1.0.0
    • getKvc

      byte getKvc()
      Gets the KVC of the load key (as given in the last SV Reload)
      Returns:
      A byte
      Since:
      1.0.0
    • getSamId

      byte[] getSamId()
      Gets the SAM ID as an array of bytes
      Returns:
      A 4-byte byte array
      Since:
      1.0.0
    • getSamTNum

      int getSamTNum()
      Gets the SAM transaction number value as an int
      Returns:
      An int
      Since:
      1.0.0
    • getSvTNum

      int getSvTNum()
      Gets the SV transaction number value as an int
      Returns:
      An int
      Since:
      1.0.0