Class ReportInfo
- java.lang.Object
-
- org.apache.jackrabbit.webdav.version.report.ReportInfo
-
- All Implemented Interfaces:
XmlSerializable
public class ReportInfo extends Object implements XmlSerializable
TheReportInfo
class encapsulates the body of a REPORT request. RFC 3253 the top Xml element being the name of the requested report. In addition a Depth header may be present (default value:DavConstants.DEPTH_0
).
-
-
Constructor Summary
Constructors Constructor Description ReportInfo(String typeLocalName, Namespace typeNamespace)
Create a newReportInfo
ReportInfo(String typelocalName, Namespace typeNamespace, int depth, DavPropertyNameSet propertyNames)
Create a newReportInfo
ReportInfo(ReportType type)
Create a newReportInfo
ReportInfo(ReportType type, int depth)
Create a newReportInfo
ReportInfo(ReportType type, int depth, DavPropertyNameSet propertyNames)
Create a newReportInfo
ReportInfo(Element reportElement, int depth)
Create a newReportInfo
object from the given Xml element.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsContentElement(String localName, Namespace namespace)
Indicates whether this info contains an element with the given name/namespace.Element
getContentElement(String localName, Namespace namespace)
Retrieves the Xml element with the given name/namespace that is a child of this info.List<Element>
getContentElements(String localName, Namespace namespace)
Returns a list containing all child Xml elements of this info that have the specified name/namespace.int
getDepth()
Returns the depth field.DavPropertyNameSet
getPropertyNameSet()
Returns aDavPropertyNameSet
providing the property names present in an eventualDavConstants.XML_PROP
child element.String
getReportName()
Name of the report type that will be / has been requested.void
setContentElement(Element contentElement)
Add the specified Xml element as child of this info.Element
toXml(Document document)
Returns the xml representation of the implementing object asElement
.
-
-
-
Constructor Detail
-
ReportInfo
public ReportInfo(ReportType type)
Create a newReportInfo
- Parameters:
type
-
-
ReportInfo
public ReportInfo(ReportType type, int depth)
Create a newReportInfo
- Parameters:
type
-depth
-
-
ReportInfo
public ReportInfo(ReportType type, int depth, DavPropertyNameSet propertyNames)
Create a newReportInfo
- Parameters:
type
-depth
-propertyNames
-
-
ReportInfo
public ReportInfo(String typeLocalName, Namespace typeNamespace)
Create a newReportInfo
- Parameters:
typeLocalName
-typeNamespace
-
-
ReportInfo
public ReportInfo(String typelocalName, Namespace typeNamespace, int depth, DavPropertyNameSet propertyNames)
Create a newReportInfo
- Parameters:
typelocalName
-typeNamespace
-depth
-propertyNames
-
-
ReportInfo
public ReportInfo(Element reportElement, int depth) throws DavException
Create a newReportInfo
object from the given Xml element.- Parameters:
reportElement
-depth
- Depth value as retrieved from theDavConstants.HEADER_DEPTH
.- Throws:
DavException
- if the report element isnull
.
-
-
Method Detail
-
getDepth
public int getDepth()
Returns the depth field. The request must be applied separately to the collection itself and to all members of the collection that satisfy the depth value.- Returns:
- depth
-
getReportName
public String getReportName()
Name of the report type that will be / has been requested.- Returns:
- Name of the report type
-
containsContentElement
public boolean containsContentElement(String localName, Namespace namespace)
Indicates whether this info contains an element with the given name/namespace.- Parameters:
localName
-namespace
-- Returns:
- true if an element with the given name/namespace is present in the body of the request info.
-
getContentElement
public Element getContentElement(String localName, Namespace namespace)
Retrieves the Xml element with the given name/namespace that is a child of this info. If no such child existsnull
is returned. If multiple elements with the same name exist, the first one is returned.- Parameters:
localName
-namespace
-- Returns:
- Xml element with the given name/namespace or
null
-
getContentElements
public List<Element> getContentElements(String localName, Namespace namespace)
Returns a list containing all child Xml elements of this info that have the specified name/namespace. If this info contains no such element, an empty list is returned.- Parameters:
localName
-namespace
-- Returns:
- List contain all child elements with the given name/namespace or an empty list.
-
setContentElement
public void setContentElement(Element contentElement)
Add the specified Xml element as child of this info.- Parameters:
contentElement
-
-
getPropertyNameSet
public DavPropertyNameSet getPropertyNameSet()
Returns aDavPropertyNameSet
providing the property names present in an eventualDavConstants.XML_PROP
child element. If no such child element is present an empty set is returned.- Returns:
DavPropertyNameSet
providing the property names present in an eventualDAV:prop
child element or an empty set.
-
toXml
public Element toXml(Document document)
Description copied from interface:XmlSerializable
Returns the xml representation of the implementing object asElement
. The givenDocument
is used as factory and represents theowner document
of the returned DOM element.- Specified by:
toXml
in interfaceXmlSerializable
- Parameters:
document
-- Returns:
- a w3c element representing this object
- See Also:
XmlSerializable.toXml(Document)
-
-