org.apache.webdav.lib.properties
Class AclProperty
java.lang.Object
|
+--org.apache.webdav.lib.BaseProperty
|
+--org.apache.webdav.lib.properties.AclProperty
- All Implemented Interfaces:
- Property
- public class AclProperty
- extends BaseProperty
This interface models the <D:acl>
property, which is
defined in the WebDAV Access Control Protocol specification.
- Version:
- $Revision: 1.2 $
- Author:
- Remy Maucherat, Dirk Verbeeck
Field Summary |
static java.lang.String |
TAG_NAME
The property name. |
Method Summary |
Ace[] |
getAces()
Returns the Aces present in this acl property. |
protected Ace |
parseAce(org.w3c.dom.Element element)
Parse an ace. |
protected Privilege |
parsePrivilege(org.w3c.dom.Element privilegeElement)
Parse a privilege element. |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
TAG_NAME
public static final java.lang.String TAG_NAME
- The property name.
AclProperty
public AclProperty(ResponseEntity response,
org.w3c.dom.Element element)
- Default constructor for the property.
getAces
public Ace[] getAces()
- Returns the Aces present in this acl property.
- Returns:
- Ace[] An Ace array.
parseAce
protected Ace parseAce(org.w3c.dom.Element element)
- Parse an ace.
parsePrivilege
protected Privilege parsePrivilege(org.w3c.dom.Element privilegeElement)
- Parse a privilege element.