Class CompareBaselineReport

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ReportType getType()
      void init​(DavResource resource, ReportInfo info)
      Set the DeltaVResource for which this report was requested and the ReportInfo as specified by the REPORT request body, that defines the details for this report.
      Please note that this methods should perform basic validation checks in order to prevent exceptional situations during the xml serialization.
      boolean isMultiStatusReport()
      Always returns false.
      org.w3c.dom.Element toXml​(org.w3c.dom.Document document)
      Returns the xml representation of the implementing object as Element.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • COMPARE_BASELINE

        public static final ReportType COMPARE_BASELINE
    • Constructor Detail

      • CompareBaselineReport

        public CompareBaselineReport()
    • Method Detail

      • init

        public void init​(DavResource resource,
                         ReportInfo info)
                  throws DavException
        Description copied from interface: Report
        Set the DeltaVResource for which this report was requested and the ReportInfo as specified by the REPORT request body, that defines the details for this report.
        Please note that this methods should perform basic validation checks in order to prevent exceptional situations during the xml serialization.
        Parameters:
        resource -
        info -
        Throws:
        DavException
        See Also:
        Report.init(DavResource, ReportInfo)
      • toXml

        public org.w3c.dom.Element toXml​(org.w3c.dom.Document document)
        Description copied from interface: XmlSerializable
        Returns the xml representation of the implementing object as Element. The given Document is used as factory and represents the owner document of the returned DOM element.
        Parameters:
        document - to be used as factory.
        Returns:
        a w3c element representing this object
        See Also:
        XmlSerializable.toXml(Document)