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

com.nimbusds.ldap.dnresolver.DNResolveMethod Maven / Gradle / Ivy

Go to download

Algorithms for resolving the distinguished name (DN) of an LDAP directory object.

The newest version!
package com.nimbusds.ldap.dnresolver;


/**
 * Enumerates the methods for resolving a user's DN.
 */
public enum DNResolveMethod {

	
	/**
	 * Resolve by substituting the username in a DN template.
	 */
	TEMPLATE,
	
	
	/**
	 * Resolve by performing a search.
	 */
	SEARCH,
	
	
	/**
	 * No resolve is required. May be used in situations when a SASL bind
	 * with a username is available and no user DN resolution is required.
	 */
	NONE
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy