transporttype.java

来自「基于Jabber协议的即时消息服务器」· Java 代码 · 共 62 行

JAVA
62
字号
/** * $Revision$ * $Date$ * * Copyright (C) 2006 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. */package org.jivesoftware.wildfire.gateway;/** * An enumeration for the valid transport types, which encompasses proprietary IM networks * as well as other IM protocols. * * @author Matt Tucker */public enum TransportType {    /**     * The AOL instant messaging service.     */    aim,    /**     * The ICQ instant messaging service.     */    icq,    /**     * The Yahoo instant messaging service.     */    yahoo,    /**     * The MSN instant messaging service.     */    msn,    /**     * A gateway to a SIP/SIMPLE servers.     */    sip,    /**     * A gateway to other XMPP servers.     */    xmpp,    /**     * A gateway to IRC servers.     */    irc,    /**     * A gateway to a service not covered by the other options..     */    other}

⌨️ 快捷键说明

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