com.netscape.certsrv.request
Interface IRequestList

All Superinterfaces:
java.util.Enumeration

public interface IRequestList
extends java.util.Enumeration

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: 1211 $, $Date: 2010-08-18 10:15:37 -0700 (Wed, 18 Aug 2010) $

Method Summary
 java.lang.Object nextRequest()
          Gets next request from the list.
 RequestId nextRequestId()
          Gets the next RequestId from this list.
 IRequest nextRequestObject()
          Gets next request Object from the list.
 
Methods inherited from interface java.util.Enumeration
hasMoreElements, nextElement
 

Method Detail

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

java.lang.Object nextRequest()
Gets next request from the list.

Returns:
next request

nextRequestObject

IRequest nextRequestObject()
Gets next request Object from the list.

Returns:
next request