Uses of Class
org.apache.zookeeper.data.ACL

Packages that use ACL
org.apache.zookeeper   
org.apache.zookeeper.proto   
org.apache.zookeeper.server ZooKeeper server theory of operation 
org.apache.zookeeper.server.upgrade   
org.apache.zookeeper.txn   
 

Uses of ACL in org.apache.zookeeper
 

Fields in org.apache.zookeeper with type parameters of type ACL
static ArrayList<ACL> ZooDefs.Ids.CREATOR_ALL_ACL
          This ACL gives the creators authentication id's all permissions.
static ArrayList<ACL> ZooDefs.Ids.OPEN_ACL_UNSAFE
          This is a completely open ACL .
static ArrayList<ACL> ZooDefs.Ids.READ_ACL_UNSAFE
          This ACL gives the world the ability to read.
 

Methods in org.apache.zookeeper that return types with arguments of type ACL
 List<ACL> ZooKeeper.getACL(String path, Stat stat)
          Return the ACL and stat of the node of the given path.
 

Method parameters in org.apache.zookeeper with type arguments of type ACL
 String ZooKeeper.create(String path, byte[] data, List<ACL> acl, CreateMode createMode)
          Create a node with the given path.
 void ZooKeeper.create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.StringCallback cb, Object ctx)
          The Asynchronous version of create.
 void AsyncCallback.ACLCallback.processResult(int rc, String path, Object ctx, List<ACL> acl, Stat stat)
           
 Stat ZooKeeper.setACL(String path, List<ACL> acl, int version)
          Set the ACL for the node of the given path if such a node exists and the given version matches the version of the node.
 void ZooKeeper.setACL(String path, List<ACL> acl, int version, AsyncCallback.StatCallback cb, Object ctx)
          The Asynchronous version of setACL.
 

Uses of ACL in org.apache.zookeeper.proto
 

Methods in org.apache.zookeeper.proto that return types with arguments of type ACL
 List<ACL> SetACLRequest.getAcl()
           
 List<ACL> CreateRequest.getAcl()
           
 List<ACL> GetACLResponse.getAcl()
           
 

Method parameters in org.apache.zookeeper.proto with type arguments of type ACL
 void SetACLRequest.setAcl(List<ACL> m_)
           
 void CreateRequest.setAcl(List<ACL> m_)
           
 void GetACLResponse.setAcl(List<ACL> m_)
           
 

Constructor parameters in org.apache.zookeeper.proto with type arguments of type ACL
CreateRequest(String path, byte[] data, List<ACL> acl, int flags)
           
GetACLResponse(List<ACL> acl, Stat stat)
           
SetACLRequest(String path, List<ACL> acl, int version)
           
 

Uses of ACL in org.apache.zookeeper.server
 

Fields in org.apache.zookeeper.server with type parameters of type ACL
 Map<List<ACL>,Long> DataTree.aclKeyMap
          this a map from acls to long.
 Map<Long,List<ACL>> DataTree.longKeyMap
          this is map from longs to acl's.
 

Methods in org.apache.zookeeper.server that return types with arguments of type ACL
 List<ACL> DataTree.convertLong(Long longVal)
          converts a list of longs to a list of acls.
 List<ACL> ZKDatabase.convertLong(Long aclL)
          convert from long to the acl entry
 List<ACL> DataTree.getACL(String path, Stat stat)
           
 List<ACL> ZKDatabase.getACL(String path, Stat stat)
          get acl for a path
 

Method parameters in org.apache.zookeeper.server with type arguments of type ACL
 Long DataTree.convertAcls(List<ACL> acls)
          converts the list of acls to a list of longs.
 String DataTree.createNode(String path, byte[] data, List<ACL> acl, long ephemeralOwner, long zxid, long time)
           
 Stat DataTree.setACL(String path, List<ACL> acl, int version)
           
 

Uses of ACL in org.apache.zookeeper.server.upgrade
 

Methods in org.apache.zookeeper.server.upgrade that return types with arguments of type ACL
 List<ACL> DataTreeV1.getACL(String path, Stat stat)
           
 

Method parameters in org.apache.zookeeper.server.upgrade with type arguments of type ACL
 String DataTreeV1.createNode(String path, byte[] data, List<ACL> acl, long ephemeralOwner, long zxid, long time)
           
 Stat DataTreeV1.setACL(String path, List<ACL> acl, int version)
           
 

Uses of ACL in org.apache.zookeeper.txn
 

Methods in org.apache.zookeeper.txn that return types with arguments of type ACL
 List<ACL> SetACLTxn.getAcl()
           
 List<ACL> CreateTxn.getAcl()
           
 

Method parameters in org.apache.zookeeper.txn with type arguments of type ACL
 void SetACLTxn.setAcl(List<ACL> m_)
           
 void CreateTxn.setAcl(List<ACL> m_)
           
 

Constructor parameters in org.apache.zookeeper.txn with type arguments of type ACL
CreateTxn(String path, byte[] data, List<ACL> acl, boolean ephemeral)
           
SetACLTxn(String path, List<ACL> acl, int version)
           
 



Copyright © 2012 The Apache Software Foundation