Class Result.Entry

java.lang.Object
org.jpos.rc.Result.Entry
Enclosing class:
Result

public static class Result.Entry extends Object
Represents a single entry in a transaction result.
  • Constructor Details

    • Entry

      public Entry(org.jpos.rc.Result.Type type, IRC irc, String source, String message)
      Constructs an Entry with the given type, IRC, source, and message.
      Parameters:
      type - the entry type
      irc - the IRC code (may be null)
      source - the source identifier
      message - the entry message
  • Method Details

    • getType

      public org.jpos.rc.Result.Type getType()
      Returns the type of this entry.
      Returns:
      entry type
    • getIrc

      public IRC getIrc()
      Returns the IRC code of this entry.
      Returns:
      IRC code, or null if not applicable
    • getSource

      public String getSource()
      Returns the source identifier of this entry.
      Returns:
      source identifier string
    • getMessage

      public String getMessage()
      Returns the message text of this entry.
      Returns:
      message string
    • toString

      public String toString()
      Overrides:
      toString in class Object