1 /* 2 * @(#)IORToSocketInfo.java 1.2 04/07/26 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package com.sun.corba.se.spi.transport; 9 10 import java.util.List; 11 12 import com.sun.corba.se.spi.ior.IOR; 13 14 public interface IORToSocketInfo 15 { 16 /** 17 * Used to extract socket address information from an IOR. 18 * 19 * @param ior. 20 * 21 * @return List - a list of SocketInfo. 22 * 23 */ 24 public List getSocketInfo(IOR ior); 25 } 26 27 // End of file. 28