/*
* @(#)IORToSocketInfo.java 1.2 04/07/26
*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package com.sun.corba.se.spi.transport;
import java.util.List;
import com.sun.corba.se.spi.ior.IOR;
public interface IORToSocketInfo
{
/**
* Used to extract socket address information from an IOR.
*
* @param ior.
*
* @return List - a list of SocketInfo.
*
*/
public List getSocketInfo(IOR ior);
}
// End of file.
|