/* * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.pept.transport; import java.util.Iterator; /** * <p> <code>ContactInfoList</code> 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.