/* * @(#)ContactInfoList.java 1.8 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.corba.se.pept.transport; import java.util.Iterator; /** *

ContactInfoList contains one or more * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo}. * * @author Harold Carr */ public interface ContactInfoList { /** * Used to get a * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator * ContactInfoListIterator} to retrieve individual * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo} * from the list. * * @return A * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator * ContactInfoListIterator}. */ public Iterator iterator(); } // End of file.