Package 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.5 $
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
TAG_NAME
The property name.-
Fields inherited from class org.apache.webdav.lib.BaseProperty
element, response
-
-
Constructor Summary
Constructors Constructor Description AclProperty(ResponseEntity response, org.w3c.dom.Element element)
Default constructor for the property.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Ace[]
getAces()
Returns the Aces present in this acl property.java.lang.String
getPropertyAsString()
This method returns the value of the 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 org.apache.webdav.lib.BaseProperty
getElement, getLocalName, getName, getNamespaceURI, getOwningURL, getStatusCode, toString
-
-
-
-
Field Detail
-
TAG_NAME
public static final java.lang.String TAG_NAME
The property name.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AclProperty
public AclProperty(ResponseEntity response, org.w3c.dom.Element element)
Default constructor for the property.
-
-
Method Detail
-
getAces
public Ace[] getAces()
Returns the Aces present in this acl property.- Returns:
- Ace[] An ace array or null when there is no ace.
-
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.
-
getPropertyAsString
public java.lang.String getPropertyAsString()
Description copied from class:BaseProperty
This method returns the value of the property. Thus, for example, calling this method on a property such as<D:getlastmodified>Tue, 05 Dec 2000 05:25:02</D:getlastmodified>
returnsTue, 05 Dec 2000 05:25:02
.
Note: Mixed content (text and xml together) will not be returned accurately.- Specified by:
getPropertyAsString
in interfaceProperty
- Overrides:
getPropertyAsString
in classBaseProperty
-
-