com.nimbusds.common.ldap.LDAPConnectionSecurity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Common Connect2id software classes
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