Package hec.lang

Interface Transaction


public interface Transaction
  • Field Details

  • Method Details

    • getSource

      String getSource()
    • getTransactionType

      int getTransactionType()
    • setReturnValue

      void setReturnValue(String str)
      Sets the return value for an Action to the argument String. Typically this will be a SQL out parameter.
      Parameters:
      str - The new ReturnValue value
    • setProcessed

      void setProcessed(boolean tf)
      Sets the Processed attribute of the Action object
      Parameters:
      tf - The new Processed value
    • setProcessedBy

      void setProcessedBy(String who)
      Sets the ProcessedBy attribute of the Action object
      Parameters:
      who - The new ProcessedBy value
    • getReturnValue

      String getReturnValue()
      Returns a String describing the return value of an Action.
      Returns:
      The ReturnValue value
    • getProcessed

      boolean getProcessed()
      Gets the Processed attribute of the Action object
      Returns:
      The Processed value
    • getProcessedBy

      String getProcessedBy()
      Gets the ProcessedBy attribute of the Action object
      Returns:
      The ProcessedBy value