Package org.ldaptive.sasl
Interface SaslClient<T>
-
- Type Parameters:
T- type of request
- All Known Implementing Classes:
DefaultSaslClient,GssApiSaslClient,ScramSaslClient
public interface SaslClient<T>SASL client that negotiates the details of the bind operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BindResponsebind(TransportConnection conn, T request)Performs a SASL bind.
-
-
-
Method Detail
-
bind
BindResponse bind(TransportConnection conn, T request) throws Exception
Performs a SASL bind.- Parameters:
conn- to perform the bind onrequest- SASL request to perform- Returns:
- final result of the bind process
- Throws:
Exception- if an error occurs
-
-