1. /*
  2. * @(#)ContactInfoList.java 1.8 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.pept.transport;
  8. import java.util.Iterator;
  9. /**
  10. * <p> <code>ContactInfoList</code> contains one or more
  11. * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo}.
  12. *
  13. * @author Harold Carr
  14. */
  15. public interface ContactInfoList
  16. {
  17. /**
  18. * Used to get a
  19. * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator
  20. * ContactInfoListIterator} to retrieve individual
  21. * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo}
  22. * from the list.
  23. *
  24. * @return A
  25. * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator
  26. * ContactInfoListIterator}.
  27. */
  28. public Iterator iterator();
  29. }
  30. // End of file.