1. /*
  2. * @(#)IIOPAddress.java 1.14 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. //Source file: J:/ws/serveractivation/src/share/classes/com.sun.corba.se.internal.ior/IIOPAddress.java
  8. package com.sun.corba.se.internal.ior;
  9. import org.omg.CORBA_2_3.portable.OutputStream ;
  10. /**
  11. * @author
  12. */
  13. public interface IIOPAddress
  14. {
  15. public void write( OutputStream os ) ;
  16. public String getHost() ;
  17. public int getPort() ;
  18. }