Uses of Interface
org.ldaptive.auth.EntryResolver
-
Packages that use EntryResolver Package Description org.ldaptive.auth -
-
Uses of EntryResolver in org.ldaptive.auth
Classes in org.ldaptive.auth that implement EntryResolver Modifier and Type Class Description class
AbstractSearchEntryResolver
Base implementation for search entry resolvers.class
AggregateEntryResolver
Used in conjunction with anAggregateDnResolver
to resolve an entry.class
AuthorizationIdentityEntryResolver
Reads the authorization identity response control, then performs an object level search on the result.class
NoOpEntryResolver
Returns an LDAP entry that contains only the DN that was supplied to it.class
SearchEntryResolver
Looks up the LDAP entry associated with a user.class
WhoAmIEntryResolver
Executes the whoami extended operation on the authenticated connection, then performs an object level search on the result.Fields in org.ldaptive.auth declared as EntryResolver Modifier and Type Field Description private EntryResolver
Authenticator. entryResolver
For finding user entries.private static EntryResolver
Authenticator. NO_OP_RESOLVER
NoOp entry resolver.Fields in org.ldaptive.auth with type parameters of type EntryResolver Modifier and Type Field Description private Map<String,EntryResolver>
AggregateEntryResolver. entryResolvers
Labeled entry resolvers.Methods in org.ldaptive.auth that return EntryResolver Modifier and Type Method Description EntryResolver
AggregateDnResolver. createEntryResolver(EntryResolver resolver)
Creates an aggregate entry resolver using the labels from the DN resolver and the supplied entry resolver.EntryResolver
Authenticator. getEntryResolver()
Returns the entry resolver.Methods in org.ldaptive.auth that return types with arguments of type EntryResolver Modifier and Type Method Description Map<String,EntryResolver>
AggregateEntryResolver. getEntryResolvers()
Returns the entry resolvers to aggregate over.Methods in org.ldaptive.auth with parameters of type EntryResolver Modifier and Type Method Description void
AggregateEntryResolver. addEntryResolver(String label, EntryResolver resolver)
Adds an entry resolver with the supplied label.EntryResolver
AggregateDnResolver. createEntryResolver(EntryResolver resolver)
Creates an aggregate entry resolver using the labels from the DN resolver and the supplied entry resolver.Authenticator.Builder
Authenticator.Builder. entryResolver(EntryResolver resolver)
Sets the entry resolver.AggregateEntryResolver.Builder
AggregateEntryResolver.Builder. resolver(String label, EntryResolver resolver)
void
Authenticator. setEntryResolver(EntryResolver resolver)
Sets the entry resolver.Method parameters in org.ldaptive.auth with type arguments of type EntryResolver Modifier and Type Method Description void
AggregateEntryResolver. setEntryResolvers(Map<String,EntryResolver> resolvers)
Sets the entry resolvers to aggregate over.Constructor parameters in org.ldaptive.auth with type arguments of type EntryResolver Constructor Description AggregateEntryResolver(Map<String,EntryResolver> resolvers)
Creates a new aggregate entry resolver.
-