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. package com.sun.corba.se.spi.transport;
  8. import java.util.List;
  9. import com.sun.corba.se.spi.ior.IOR;
  10. public interface IORToSocketInfo
  11. {
  12. /**
  13. * Used to extract socket address information from an IOR.
  14. *
  15. * @param ior.
  16. *
  17. * @return List - a list of SocketInfo.
  18. *
  19. */
  20. public List getSocketInfo(IOR ior);
  21. }
  22. // End of file.