Class LookupResultSet

java.lang.Object
oracle.iam.grc.sod.vo.LookupResultSet
All Implemented Interfaces:
Serializable, Iterator

public class LookupResultSet extends Object implements Iterator, Serializable
This class represents the result of a lookup operation on the SoD engine. Its design is based on the design pattern 'Internal Iterator'. This class will be utilized by the 'lookup' operation of class @see SoDAnalysisExecutionOper to structure the result of the executed lookup operations.
See Also:
  • Constructor Details

    • LookupResultSet

      public LookupResultSet()
  • Method Details

    • remove

      public void remove()
      Specified by:
      remove in interface Iterator
    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator
    • next

      public Object next()
      Specified by:
      next in interface Iterator
    • getMetadata

      public String[] getMetadata()
      Returns:
      Returns the metadata.
    • setMetadata

      public void setMetadata(String[] metadata)
      Parameters:
      metadata - The metadata to set.
    • getRecords

      public List getRecords()
      Returns:
      Returns the records.
    • setRecords

      public void setRecords(List records)
      Parameters:
      records - The records to set.