blob: 769505bf7eb5e8d6ed825932a782b71f56e86904 [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.webdav.version.report;
import org.apache.jackrabbit.webdav.xml.XmlSerializable;
import org.apache.jackrabbit.webdav.version.DeltaVResource;
import org.apache.jackrabbit.webdav.DavException;
/**
* The <code>Report</code> interface defines METHODS needed in order to respond
* to a REPORT request. The REPORT method is a required feature to all
* DeltaV resources.
*
* @see DeltaVResource#getReport(ReportInfo)
*/
public interface Report extends XmlSerializable {
/**
* Returns the registered type of this report.
*
* @return the type of this report.
*/
public ReportType getType();
/**
* Returns true if this <code>Report</code> will send a <code>MultiStatus</code>
* response.<br>
* Please note that RFC 3253 that the the response must be a 207 Multi-Status,
* if a Depth request header is present.
*
* @return
*/
public boolean isMultiStatusReport();
/**
* Set the <code>DeltaVResource</code> for which this report was requested
* and the <code>ReportInfo</code> as specified by the REPORT request body,
* that defines the details for this report.<br>
* Please note that this methods should perform basic validation checks
* in order to prevent execeptional situations during the xml serialization.
*
* @param resource
* @param info
* @throws DavException
*/
public void init(DeltaVResource resource, ReportInfo info) throws DavException;
}