com.sap.tc.logging.interfaces
Interface ILoggingResultSet

All Known Implementing Classes:
LogRecordResultSet

public interface ILoggingResultSet

General result set for objects used in Logging. Usually used when making a request, expecting multiple number of results returned.


Method Summary
 java.lang.Exception getException()
          Return the specific error occurred for invalid operation(if any).
 java.util.List getResults()
          Return a list of result nodes in this Result Set
 int getSize()
          Return the number of result nodes in this Result Set
 boolean isEmpty()
          Return true if result set is empty (no result node)
 boolean isValid()
          Return general status if result is either valid(true) or invalid(false)
 

Method Detail

getResults

public java.util.List getResults()
Return a list of result nodes in this Result Set

isValid

public boolean isValid()
Return general status if result is either valid(true) or invalid(false)

isEmpty

public boolean isEmpty()
Return true if result set is empty (no result node)

getSize

public int getSize()
Return the number of result nodes in this Result Set

getException

public java.lang.Exception getException()
Return the specific error occurred for invalid operation(if any). Null if none.