Interface ListDirectoryResultSet
-
- All Superinterfaces:
ListDirectoryResultSetComp
,Serializable
public interface ListDirectoryResultSet extends Serializable, ListDirectoryResultSetComp
A List Directory result. This has a methodgetListDirectoryResults()
to get an RWIterable over the matching items in the directory and a methodgetWarningMessage()
to retrieve a possible warning message.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RWIterable<ListDirectoryResult>
getListDirectoryResults()
Get anRWIterable
over a collection ofListDirectoryResult
items, the collection will be ordered by Name.String
getWarningMessage()
Get any warning message generated by the server whilst retrieving these results.
-
-
-
Method Detail
-
getListDirectoryResults
RWIterable<ListDirectoryResult> getListDirectoryResults() throws ListDirectoryTransientException, ListDirectoryException
Get anRWIterable
over a collection ofListDirectoryResult
items, the collection will be ordered by Name. If the collection is empty, an empty RWIterable will be returned, that is, this method will never returnnull
.- Specified by:
getListDirectoryResults
in interfaceListDirectoryResultSetComp
- Returns:
- An
RWIterable
over a collection ofListDirectoryResult
items, the collection will be ordered by Name. - Throws:
ListDirectoryException
- permanent error, cannot be recovered.ListDirectoryTransientException
- transient error, retry may work.
-
getWarningMessage
String getWarningMessage()
Get any warning message generated by the server whilst retrieving these results.- Returns:
- Warning message or null if there is none.
-
-