All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nimbusds.common.ldap.LDAPConnectionSecurity Maven / Gradle / Ivy

There is a newer version: 3.4
Show newest version
package com.nimbusds.common.ldap;


/**
 * Enumeration of the transport layer security types for LDAP connections.
 */
public enum LDAPConnectionSecurity {

	
	/**
	 * No security (plain connection).
	 */
	NONE,
	
	
	/**
	 * StartTLS security.
	 */
	STARTTLS,
	
	
	/**
	 * SSL security.
	 */
	SSL
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy