SetACLBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client   = client;
     backgrounding = new Backgrounding();
     acling        = new ACLing(client.getAclProvider());
     version       = -1;
 }
 internal CreateBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client               = client;
     createMode                = CreateMode.PERSISTENT;
     backgrounding             = new Backgrounding();
     acling                    = new ACLing(client.getAclProvider());
     createParentsIfNeeded     = false;
     createParentsAsContainers = false;
     compress                  = false;
     doProtected               = false;
     protectedId               = null;
 }
 public IACLBackgroundPathAndBytesable <String> withACL(List <ACL> aclList)
 {
     acling = new ACLing(client.getAclProvider(), aclList);
     return(new ACLBackgroundPathAndBytesable(this));
 }
 public IBackgroundPathable <Stat> withACL(List <ACL> aclList)
 {
     acling = new ACLing(client.getAclProvider(), aclList);
     return(this);
 }