org.apache.webdav.lib.properties
Class ResourceTypeProperty
java.lang.Object
org.apache.webdav.lib.BaseProperty
org.apache.webdav.lib.properties.ResourceTypeProperty
- All Implemented Interfaces:
- Property
- public class ResourceTypeProperty
- extends BaseProperty
An interface that describes a standard Resource Type property (as defined by
the WebDAV specification).
- Author:
- B.C. Holmes, Dirk Verbeeck
Field Summary |
static java.lang.String |
TAG_NAME
The property name. |
Method Summary |
java.lang.String |
getPropertyAsString()
This method returns the value of the property. |
boolean |
isCollection()
Returns true if the resource is a collection. |
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.
- See Also:
- Constant Field Values
ResourceTypeProperty
public ResourceTypeProperty(ResponseEntity response,
org.w3c.dom.Element element)
- Default constructor for the property.
isCollection
public boolean isCollection()
- Returns true if the resource is a collection. A collection is indicated
by a response like this:
<D:resourcetype><D:collection/></D:resourcetype>
getPropertyAsString
public java.lang.String getPropertyAsString()
- This method returns the value of the property.
For this property "COLLECTION" is returned if
this resource is a collection, "" otherwise.
WARNING: this will change in the future
use isCollection()
- Specified by:
getPropertyAsString
in interface Property
- Overrides:
getPropertyAsString
in class BaseProperty