
com.nimbusds.ldap.dnresolver.DNResolveMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dn-resovler Show documentation
Show all versions of dn-resovler Show documentation
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