Interface ListDirectoryResultSetComp
- 
- All Superinterfaces:
- Serializable
 - All Known Subinterfaces:
- ListDirectoryResultSet
 
 public interface ListDirectoryResultSetComp extends Serializable A List Directory result. This has a single methodgetListDirectoryResults()to get an iterator over the matching items in the directory.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<ListDirectoryResult>getListDirectoryResults()Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useListDirectoryResultSet.getListDirectoryResults()instead.
 
- 
- 
- 
Method Detail- 
getListDirectoryResults@Deprecated Iterator<ListDirectoryResult> getListDirectoryResults() throws com.redwood.scheduler.api.exception.ListDirectoryTransientException, com.redwood.scheduler.api.exception.ListDirectoryException Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useListDirectoryResultSet.getListDirectoryResults()instead.Get anIteratorover a collection ofListDirectoryResultitems, the collection will be ordered by Name. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull.- Returns:
- An Iteratorover a collection ofListDirectoryResultitems, the collection will be ordered by Name.
- Throws:
- com.redwood.scheduler.api.exception.ListDirectoryException- permanent error, cannot be recovered.
- com.redwood.scheduler.api.exception.ListDirectoryTransientException- transient error, retry may work.
 
 
- 
 
-