📄 serverinfo.java
字号:
/*
* @(#)ServerInfo.java
*
* Copyright (c) 2001-2002, JangHo Hwang
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the JangHo Hwang nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: ServerInfo.java,v 1.6 2002/11/18 16:14:30 xrath Exp $
*/
package rath.msnm.entity;
/**
* XFR殿狼 立加秦具且 辑滚啊 referred瞪锭付促
* 盔拜 辑滚狼 困摹沥焊甫 唱鸥郴绰 entity class捞促.
*
* @author Jang-Ho Hwang, rath@linuxkorea.co.kr
* @version $Id: ServerInfo.java,v 1.6 2002/11/18 16:14:30 xrath Exp $
*/
public class ServerInfo
{
/**
* Default port number for <b>DS</b>(Dispatch server) and
* <b>SS</b>(Switchboard server)
*/
public static final int DEFAULT_PORT = 1863;
private String host = null;
private int port;
/**
* 林绢柳 host客 DEFAULT_PORT甫 啊瘤绰 ServerInfo 按眉甫 积己茄促.
*/
public ServerInfo( String host )
{
this.host = host;
this.port = DEFAULT_PORT;
}
/**
* 林绢柳 host客 port甫 啊瘤绰 ServerInfo 按眉甫 积己茄促.
*/
public ServerInfo( String host, int port )
{
this.host = host;
this.port = port;
}
public String getHostAddress()
{
return this.host;
}
public int getPort()
{
return this.port;
}
/**
* 2001斥 11岿 7老 泅犁 MSN messenger狼 DS(Dispatch Server)狼
* Host客 port甫 啊瘤绰 ServerInfo按眉甫 积己窍咯 馆券秦霖促.
*
* @return Default DS ServerInfo instance of MSN messenger.
* @deprecated 货肺款 MSN俊辑绰 DS甫 鞘夸肺 窍瘤 臼绰 备炼捞骨肺 荤侩窍瘤 臼绰促.
*/
public static ServerInfo getDefaultDispatchServerInfo()
{
return new ServerInfo( "64.4.13.58", DEFAULT_PORT );
}
/**
*
*/
public static ServerInfo getDefaultServerInfo()
{
return new ServerInfo( "messenger.hotmail.com", DEFAULT_PORT );
}
public String toString()
{
return "Host: " + host + ", Port: " + port;
}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -