Uses of Class
org.apache.zookeeper.data.ACL
-
Packages that use ACL Package Description org.apache.zookeeper.proto org.apache.zookeeper.txn -
-
Uses of ACL in org.apache.zookeeper.proto
Methods in org.apache.zookeeper.proto that return types with arguments of type ACL Modifier and Type Method Description java.util.List<ACL>
CreateRequest. getAcl()
java.util.List<ACL>
CreateTTLRequest. getAcl()
java.util.List<ACL>
GetACLResponse. getAcl()
java.util.List<ACL>
SetACLRequest. getAcl()
Method parameters in org.apache.zookeeper.proto with type arguments of type ACL Modifier and Type Method Description void
CreateRequest. setAcl(java.util.List<ACL> m_)
void
CreateTTLRequest. setAcl(java.util.List<ACL> m_)
void
GetACLResponse. setAcl(java.util.List<ACL> m_)
void
SetACLRequest. setAcl(java.util.List<ACL> m_)
Constructor parameters in org.apache.zookeeper.proto with type arguments of type ACL Constructor Description CreateRequest(java.lang.String path, byte[] data, java.util.List<ACL> acl, int flags)
CreateTTLRequest(java.lang.String path, byte[] data, java.util.List<ACL> acl, int flags, long ttl)
GetACLResponse(java.util.List<ACL> acl, Stat stat)
SetACLRequest(java.lang.String path, java.util.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 Modifier and Type Method Description java.util.List<ACL>
CreateContainerTxn. getAcl()
java.util.List<ACL>
CreateTTLTxn. getAcl()
java.util.List<ACL>
CreateTxn. getAcl()
java.util.List<ACL>
CreateTxnV0. getAcl()
java.util.List<ACL>
SetACLTxn. getAcl()
Method parameters in org.apache.zookeeper.txn with type arguments of type ACL Modifier and Type Method Description void
CreateContainerTxn. setAcl(java.util.List<ACL> m_)
void
CreateTTLTxn. setAcl(java.util.List<ACL> m_)
void
CreateTxn. setAcl(java.util.List<ACL> m_)
void
CreateTxnV0. setAcl(java.util.List<ACL> m_)
void
SetACLTxn. setAcl(java.util.List<ACL> m_)
Constructor parameters in org.apache.zookeeper.txn with type arguments of type ACL Constructor Description CreateContainerTxn(java.lang.String path, byte[] data, java.util.List<ACL> acl, int parentCVersion)
CreateTTLTxn(java.lang.String path, byte[] data, java.util.List<ACL> acl, int parentCVersion, long ttl)
CreateTxn(java.lang.String path, byte[] data, java.util.List<ACL> acl, boolean ephemeral, int parentCVersion)
CreateTxnV0(java.lang.String path, byte[] data, java.util.List<ACL> acl, boolean ephemeral)
SetACLTxn(java.lang.String path, java.util.List<ACL> acl, int version)
-