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

23 lines
507 B
Java

package org.mercury_im.messenger.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,
;
}