java.lang.Object
org.apache.curator.framework.schema.SchemaViolation.ViolatorData
- Enclosing class:
SchemaViolation
public static class SchemaViolation.ViolatorData
extends Object
Data about the calling API that violated the schema
-
Constructor Summary
Constructors
-
Method Summary
List<org.apache.zookeeper.data.ACL>
The ACLs used in the API or null
byte[]
The data used in the API or null
The path used in the API or null
-
Constructor Details
-
ViolatorData
public ViolatorData(String path,
byte[] data,
List<org.apache.zookeeper.data.ACL> acl)
-
Method Details
-
getPath
The path used in the API or null
- Returns:
- path or null
-
getData
public byte[] getData()
The data used in the API or null
- Returns:
- data or null
-
getAcl
public List<org.apache.zookeeper.data.ACL> getAcl()
The ACLs used in the API or null
- Returns:
- ACLs or null
-