Package oracle.iam.grc.sod.vo
Class LookupResultSet
java.lang.Object
oracle.iam.grc.sod.vo.LookupResultSet
- All Implemented Interfaces:
 Serializable,Iterator
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 Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionString[]booleanhasNext()next()voidremove()voidsetMetadata(String[] metadata) voidsetRecords(List records) Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining 
- 
Constructor Details
- 
LookupResultSet
public LookupResultSet() 
 - 
 - 
Method Details
- 
remove
public void remove() - 
hasNext
public boolean hasNext() - 
next
 - 
getMetadata
- Returns:
 - Returns the metadata.
 
 - 
setMetadata
- Parameters:
 metadata- The metadata to set.
 - 
getRecords
- Returns:
 - Returns the records.
 
 - 
setRecords
- Parameters:
 records- The records to set.
 
 -