endpointinfoimpl.java

来自「JAVA 所有包」· Java 代码 · 共 100 行

JAVA
100
字号
/* * @(#)EndPointInfoImpl.java	1.36 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.impl.legacy.connection;import com.sun.corba.se.spi.legacy.connection.LegacyServerSocketEndPointInfo;import com.sun.corba.se.spi.transport.SocketInfo;public class EndPointInfoImpl     implements 	SocketInfo,	LegacyServerSocketEndPointInfo{    protected String type;    protected String hostname;    protected int port;    protected int locatorPort;    protected String name;    public EndPointInfoImpl(String type, int port, String hostname) {	this.type = type;	this.port = port;	this.hostname = hostname;	this.locatorPort = -1;	this.name = LegacyServerSocketEndPointInfo.NO_NAME;    }    public String getType() {	return type;    }    public String getHost() {	return hostname;    }    public String getHostName() {	return hostname;    }    public int getPort() {	return port;    }    public int getLocatorPort ()    {	return locatorPort;    }    public void setLocatorPort (int port)    {	locatorPort = port;    }    public String getName()    {	return name;    }    public int hashCode() {        return type.hashCode() ^ hostname.hashCode() ^ port;    }    public boolean equals(Object obj) {        if (!(obj instanceof EndPointInfoImpl)) {            return false;	}        EndPointInfoImpl other = (EndPointInfoImpl)obj;	if (type == null) {	    if (other.type != null) {		return false;	    }	} else if (!type.equals(other.type)) {	    return false;	}        if (port != other.port) {            return false;	}        if (!hostname.equals(other.hostname)) {            return false;        }        return true;    }    public String toString ()    {	return	    type + " " +	    name + " " +	    hostname + " " +	    port;    }}// End of file.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?