001package com.nimbusds.common.ldap;
002
003
004/**
005 * Enumeration of the transport layer security types for LDAP connections.
006 */
007public enum LDAPConnectionSecurity {
008
009        
010        /**
011         * No security (plain connection).
012         */
013        NONE,
014        
015        
016        /**
017         * StartTLS security.
018         */
019        STARTTLS,
020        
021        
022        /**
023         * SSL security.
024         */
025        SSL
026}