/* * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.spi.ior.iiop; import com.sun.corba.se.spi.ior.Writeable ; /** IIOPAddress represents the host and port used to establish a * TCP connection for an IIOP request. */ public interface IIOPAddress extends Writeable { public String getHost() ; public int getPort() ; }