FileDocCategorySizeDatePackage
IIOPEndPoint.javaAPI DocGlassfish v2 API3404Fri May 04 22:35:04 BST 2007com.sun.enterprise.tools.upgrade.cluster

IIOPEndPoint

public class IIOPEndPoint extends Object
author
prakash

Fields Summary
private String
id
private String
port
private String
host
Constructors Summary
public IIOPEndPoint(String id, String host, String port)
Creates a new instance of IIOPEndPoint

        this.id = id;
        this.host = host;
        this.port = port;
    
Methods Summary
public java.lang.StringgetHost()
Getter for property host.

return
Value of property host.

        return host;
    
public java.lang.StringgetId()
Getter for property id.

return
Value of property id.

        return id;
    
public java.lang.StringgetPort()
Getter for property port.

return
Value of property port.

        return port;
    
public voidsetHost(java.lang.String host)
Setter for property host.

param
host New value of property host.

        this.host = host;
    
public voidsetId(java.lang.String id)
Setter for property id.

param
id New value of property id.

        this.id = id;
    
public voidsetPort(java.lang.String port)
Setter for property port.

param
port New value of property port.

        this.port = port;