FileDocCategorySizeDatePackage
USLPort.javaAPI DocJava SE 5 API565Fri Aug 26 14:54:26 BST 2005com.sun.corba.se.impl.legacy.connection

USLPort.java

/*
 * @(#)USLPort.java	1.6 03/12/19
 * 
 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package com.sun.corba.se.impl.legacy.connection;

public class USLPort
{
    private String type;
    private int    port;

    public USLPort (String type, int port)
    {
	this.type = type;
	this.port = port;
    }

    public String getType  () { return type; }
    public int    getPort  () { return port; }
    public String toString () { return type + ":" + port; }
}

// End of file.