Operations
Operations provide the core functionality for interacting with LDAP servers. Ldaptive provides the following operation implementations:
- Search
- Compare
- Bind
- Add
- Modify
- Rename
- Delete
The operation interface looks like:
public interface Operation<Q extends Request, S>
{
Response<S> execute(Q request) throws LdapException;
}