Package com.netscape.certsrv.request
Interface IRequestList
- All Superinterfaces:
Enumeration<RequestId>
- All Known Implementing Classes:
RequestList
,RequestListByStatus
,SearchEnumeration
An interface providing a list of RequestIds that match
some criteria. It could be a list of all elements in a
queue, or just some defined sub-set.
- Version:
- $Revision$, $Date$
-
Method Summary
Modifier and TypeMethodDescriptionGets next request from the list.Gets the next RequestId from this list.Gets next request Object from the list.Methods inherited from interface java.util.Enumeration
asIterator, hasMoreElements, nextElement
-
Method Details
-
nextRequestId
RequestId nextRequestId()Gets the next RequestId from this list. null is returned when there are no more elements in the list.Callers should be sure there is another element in the list by calling hasMoreElements first.
- Returns:
- next request id
-
nextRequest
Object nextRequest()Gets next request from the list.- Returns:
- next request
-
nextRequestObject
Request nextRequestObject()Gets next request Object from the list.- Returns:
- next request
-