Package org.trellisldp.webdav.xml
Class DavMultiStatus
- java.lang.Object
-
- org.trellisldp.webdav.xml.DavMultiStatus
-
public class DavMultiStatus extends Object
A PROPFIND response class.
-
-
Constructor Summary
Constructors Constructor Description DavMultiStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Get the overall description of the responses.List<DavResponse>
getResponses()
Get the list of responses.void
setDescription(String description)
Set the overarching response description.void
setResponses(List<DavResponse> responses)
Set the list of responses.
-
-
-
Method Detail
-
getResponses
public List<DavResponse> getResponses()
Get the list of responses.- Returns:
- the response list
-
setResponses
public void setResponses(List<DavResponse> responses)
Set the list of responses.- Parameters:
responses
- the response elements
-
getDescription
public String getDescription()
Get the overall description of the responses.- Returns:
- the response description
-
setDescription
public void setDescription(String description)
Set the overarching response description.- Parameters:
description
- the response description
-
-