org.systinet.wasp.admin.security
Class UserStoreProxy.UserIteratorImpl

java.lang.Object
  extended byorg.systinet.wasp.admin.security.UserStoreProxy.UserIteratorImpl
All Implemented Interfaces:
UserIterator
Enclosing class:
UserStoreProxy

protected class UserStoreProxy.UserIteratorImpl
extends java.lang.Object
implements UserIterator


Constructor Summary
UserStoreProxy.UserIteratorImpl(java.util.HashSet rawSet)
           
 
Method Summary
 boolean hasNext()
          Returns true if the iteration has more elements.
 UserEntry next()
          Returns the next element in the iteration.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UserStoreProxy.UserIteratorImpl

public UserStoreProxy.UserIteratorImpl(java.util.HashSet rawSet)
Method Detail

hasNext

public boolean hasNext()
Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Specified by:
hasNext in interface UserIterator
Returns:
true if the iteration has more elements.

next

public UserEntry next()
               throws java.util.NoSuchElementException
Returns the next element in the iteration.

Specified by:
next in interface UserIterator
Returns:
next element in the iterations
Throws:
java.util.NoSuchElementException - iteration has no more elements.