📄 xmppserverinfoimpl.java
字号:
/**
* $RCSfile$
* $Revision: 1583 $
* $Date: 2005-07-03 17:55:39 -0300 (Sun, 03 Jul 2005) $
*
* Copyright (C) 2008 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution, or a commercial license
* agreement with Jive.
*/
package org.jivesoftware.openfire.spi;
import org.jivesoftware.openfire.ConnectionManager;
import org.jivesoftware.openfire.ServerPort;
import org.jivesoftware.openfire.XMPPServerInfo;
import org.jivesoftware.util.JiveGlobals;
import org.jivesoftware.util.Version;
import java.util.Collection;
import java.util.Collections;
import java.util.Date;
/**
* Implements the server info for a basic server. Optimization opportunities
* in reusing this object the data is relatively static.
*
* @author Iain Shigeoka
*/
public class XMPPServerInfoImpl implements XMPPServerInfo {
private Date startDate;
private String xmppDomain;
private String hostname;
private Version ver;
private ConnectionManager connectionManager;
/**
* Simple constructor
*
* @param xmppDomain the server's XMPP domain name (e.g. example.org).
* @param hostname the server's host name (e.g. server1.example.org).
* @param version the server's version number.
* @param startDate the server's last start time (can be null indicating
* it hasn't been started).
* @param connectionManager the object that keeps track of the active ports.
*/
public XMPPServerInfoImpl(String xmppDomain, String hostname, Version version, Date startDate, ConnectionManager connectionManager) {
this.xmppDomain = xmppDomain;
this.hostname = hostname;
this.ver = version;
this.startDate = startDate;
this.connectionManager = connectionManager;
}
public Version getVersion() {
return ver;
}
@Deprecated
public String getName() {
return getXMPPDomain();
}
@Deprecated
public void setName(String serverName) {
setXMPPDomain(serverName);
}
public String getHostname()
{
return hostname;
}
public String getXMPPDomain()
{
return xmppDomain;
}
public void setXMPPDomain(String domainName)
{
this.xmppDomain = domainName;
if (domainName == null) {
JiveGlobals.deleteProperty("xmpp.domain");
}
else {
JiveGlobals.setProperty("xmpp.domain", domainName);
}
}
public Date getLastStarted() {
return startDate;
}
public Collection<ServerPort> getServerPorts() {
if (connectionManager == null) {
return Collections.emptyList();
}
else {
return connectionManager.getPorts();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -