aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/ConnectionType.java
blob: cc3091585a27e3c448a8da2bee6d15412c935c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.libmailcore;

/** Connection type. */
public class ConnectionType {
    /** Clear-text connection. */
    final public static int ConnectionTypeClear = 1 << 0;
    /** Connection starts in clear-text and is switched to SSL when it starts sending sensitive data. */
    final public static int ConnectionTypeStartTLS = 1 << 1;
    /** SSL connection. */
    final public static int ConnectionTypeTLS = 1 << 2;
}