* @see #getACL(String, Stat)
*/
public void getACL(String path, Stat stat, ACLCallback cb, Object ctx) {
PathUtils.validatePath(path);
RequestHeader h = new RequestHeader();
h.setType(ZooDefs.OpCode.getACL);
GetACLRequest request = new GetACLRequest();
request.setPath(path);
GetACLResponse response = new GetACLResponse();
cnxn
.queuePacket(h, new ReplyHeader(), request, response, cb, path,