Operations

Operations provide the core functionality for interacting with LDAP servers. Ldaptive provides the following operation implementations:

The operation interface looks like:

public interface Operation<Q extends Request, S>
{
  Response<S> execute(Q request) throws LdapException;
}