Mercury-IM/domain/src/main/java/org/mercury_im/core/transport/ConnectionType.java

23 lines
502 B
Java
Raw Normal View History

package org.mercury_im.core.transport;
public enum ConnectionType {
// Smack Connection Types from module transport_xmpp.
/**
* Underlying connection is a Smack XMPPTCPConnection.
*/
SMACK_TCP,
/**
* Underlying connection is a Smack XMPPBOSHConnection.
* @deprecated Not yet implemented.
*/
SMACK_BOSH,
/**
* Underlying connection is a Smack XMPPWebsocketConnection.
* @deprecated Not yet implemented.
*/
SMACK_WEBSOCKETS,
;
}