1. /*
  2. * @(#)EndPointInfo.java 1.4 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.connection;
  8. /**
  9. * This interface is used to communicate endpoint information
  10. * between instances of <code>ORBSocketFactory</code> and its
  11. * associated ORB.
  12. *
  13. */
  14. public interface EndPointInfo
  15. {
  16. public String getType();
  17. public String getHost();
  18. public int getPort();
  19. }