com.nimbusds.infinispan.persistence.ldap.query.LDAPQueryExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-cachestore-ldap Show documentation
Show all versions of infinispan-cachestore-ldap Show documentation
Infinispan module for persisting cache data to an LDAPv3 directory
package com.nimbusds.infinispan.persistence.ldap.query;
import com.nimbusds.infinispan.persistence.common.query.QueryExecutor;
/**
* LDAP search query executor.
*/
public interface LDAPQueryExecutor extends QueryExecutor {
/**
* Initialises the LDAP search query executor.
*
* @param initCtx The initialisation context. Not {@code null}.
*/
void init(final LDAPQueryExecutorInitContext initCtx);
}