FileDocCategorySizeDatePackage
IIOPAddressImpl.javaAPI DocJava SE 5 API1266Fri Aug 26 14:54:24 BST 2005com.sun.corba.se.impl.ior.iiop

IIOPAddressImpl

public final class IIOPAddressImpl extends IIOPAddressBase
author

Fields Summary
private com.sun.corba.se.spi.orb.ORB
orb
private com.sun.corba.se.impl.logging.IORSystemException
wrapper
private String
host
private int
port
Constructors Summary
public IIOPAddressImpl(com.sun.corba.se.spi.orb.ORB orb, String host, int port)

	this.orb = orb ;
	wrapper = IORSystemException.get( orb,
	    CORBALogDomains.OA_IOR ) ;

	if ((port < 0) || (port > 65535))
	    throw wrapper.badIiopAddressPort( new Integer(port)) ;

	this.host = host ;
	this.port = port ;
    
public IIOPAddressImpl(org.omg.CORBA_2_3.portable.InputStream is)

	host = is.read_string() ;
	short thePort = is.read_short() ;
	port = shortToInt( thePort ) ;
    
Methods Summary
public java.lang.StringgetHost()

	return host ;
    
public intgetPort()

	return port ;