View Javadoc
1   package com.srv4pos.server.api.softwareVendor;
2   
3   /**
4    * The type of encryption of email messages.
5    *
6    * <p>User: Kirill, Date: 14.09.13 15:57</p>
7    */
8   public enum MailEncryptionType {
9       /**
10       * Transport Layer Security.
11       */
12      TLS,
13      /**
14       * Transport Layer Security (TLS) and its predecessor, Secure Sockets Layer (SSL).
15       */
16      SSL_TLS,
17      /**
18       * Without encryption.
19       */
20      NONE
21  }