//SASL security provider and save it in the client connection for
//use in later processing.
if(isConfidentialIntegrity()) {
SASLByteChannel saslByteChannel =
SASLByteChannel.getSASLByteChannel(clientConn, mechanism, this);
LDAPClientConnection ldapConn =
(LDAPClientConnection) clientConn;
ldapConn.setSASLPendingProvider(saslByteChannel);
} else {
dispose();
clientConn.setSASLAuthStateInfo(null);
}
} catch (SaslException e) {