AuthMechListOperation op = new AuthMechListOperation(codec, topologyId, tcpTransport);
return op.execute();
}
private byte[] auth(TcpTransport tcpTransport, AtomicInteger topologyId, String mech, byte[] response) {
AuthOperation op = new AuthOperation(codec, topologyId, tcpTransport, mech, response);
return op.execute();
}