Package org.trellisldp.webdav.xml
Class DavResponse
- java.lang.Object
-
- org.trellisldp.webdav.xml.DavResponse
-
public class DavResponse extends Object
A PROPFIND response class.
-
-
Constructor Summary
Constructors Constructor Description DavResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Get the description of the responses.String
getHref()
Get the href element.List<DavPropStat>
getPropStats()
Get the propstat element.void
setDescription(String description)
Set the response description.void
setHref(String href)
Set the href element.void
setPropStats(List<DavPropStat> propstats)
Set the propstat element.
-
-
-
Method Detail
-
getHref
public String getHref()
Get the href element.- Returns:
- the href value
-
setHref
public void setHref(String href)
Set the href element.- Parameters:
href
- the href value
-
getPropStats
public List<DavPropStat> getPropStats()
Get the propstat element.- Returns:
- the propstat element
-
setPropStats
public void setPropStats(List<DavPropStat> propstats)
Set the propstat element.- Parameters:
propstats
- the propstat element
-
getDescription
public String getDescription()
Get the description of the responses.- Returns:
- the response description
-
setDescription
public void setDescription(String description)
Set the response description.- Parameters:
description
- the response description
-
-