⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 davservletrequest.java

📁 jsr170接口的java实现。是个apache的开源项目。
💻 JAVA
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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;import org.apache.jackrabbit.webdav.lock.LockInfo;import org.apache.jackrabbit.webdav.property.DavPropertyNameSet;import org.apache.jackrabbit.webdav.property.DavPropertySet;import org.apache.jackrabbit.webdav.property.DavProperty;import org.apache.jackrabbit.webdav.property.DavPropertyName;import org.w3c.dom.Document;import javax.servlet.http.HttpServletRequest;import java.util.List;/** * <code>DavServletRequest</code> extends the HttpServletRequest by Webdav * specific METHODS. */public interface DavServletRequest extends HttpServletRequest {    /**     * Sets the <code>DavSession</code> to this request.     *     * @param session     */    public void setDavSession(DavSession session);    /**     * Returns the {@link DavSession} created for this request.     *     * @return session for this resource     */    public DavSession getDavSession();    /**     * Return the locator of the requested {@link DavResource resource}.     *     * @return locator of the requested {@link DavResource resource}.     */    public DavResourceLocator getRequestLocator();    /**     * Parse the {@link DavConstants#HEADER_DESTINATION Destination header}     * and return the locator of the corresponding {@link DavResource resource}.     *     * @return locator of the resource specified with the Destination header.     * @see DavConstants#HEADER_DESTINATION     */    public DavResourceLocator getDestinationLocator();    /**     * Returns true if the {@link DavConstants#HEADER_OVERWRITE Overwrite header}     * is set to 'T' thus instructing the server to overwrite the state of a     * non-null destination resource during a COPY or MOVE. A Overwrite header     * value of 'F' will return false.     *     * @return true if the Overwrite header is set to 'T', false if it is set     * to 'F'.     * @see DavConstants#HEADER_OVERWRITE     */    public boolean isOverwrite();    /**     * Return the integer representation of the given {@link DavConstants#HEADER_DEPTH     * Depth header}. 'Infinity' is represented by {@link DavConstants#DEPTH_INFINITY}.     *     * @return integer representation of the {@link DavConstants#HEADER_DEPTH     * Depth header}.     * @see DavConstants#HEADER_DEPTH     */    public int getDepth();    /**     * Returns the integer representation of the {@link DavConstants#HEADER_DEPTH     * Depth header} or the given defaultValue, if the Depth header is missing.     *     * @param defaultValue to be returned if no Depth header is present.     * @return integer representation of the {@link DavConstants#HEADER_DEPTH     * Depth header} or the given defaultValue.     * @see DavConstants#HEADER_DEPTH     */    public int getDepth(int defaultValue);    /**     * Returns the token present in the {@link DavConstants#HEADER_LOCK_TOKEN     * Lock-Token Header} or <code>null</code> if no such header is available.<br>     * Note: The 'Lock-Token' header is sent with UNLOCK requests and with     * lock responses only. For any other request that may be affected by a lock     * the 'If' header field is responsible.     *     * @return the token present in the Lock-Token header.     * @see DavConstants#HEADER_LOCK_TOKEN     */    public String getLockToken();    /**     * Return the timeout requested in the {@link DavConstants#HEADER_TIMEOUT     * Timeout header} as <code>long</code>. The representation of the     * 'Infinite' timeout is left to the implementation.     *     * @return long value representation of the Timeout header.     * @see DavConstants#HEADER_TIMEOUT     * @see DavConstants#TIMEOUT_INFINITE     */    public long getTimeout();    /**     * Parse the Xml request body and return a {@link org.w3c.dom.Document}.     *     * @return Document representing the Xml request body or <code>null</code>     * if no request body is present.     * @throws DavException If the request body cannot be parsed into an Xml     * Document.      */    public Document getRequestDocument() throws DavException;    /**     * Return the type of PROPFIND request as indicated by the PROPFIND request     * body.     *     * @return type of PROPFIND request     * @see DavConstants#PROPFIND_ALL_PROP     * @see DavConstants#PROPFIND_BY_PROPERTY     * @see DavConstants#PROPFIND_PROPERTY_NAMES     * @throws DavException If the propfind type could not be determined due to     * an invalid request body.     */    public int getPropFindType() throws DavException;    /**     * Return the set of properties the client requested with a PROPFIND request     * or an empty set if the type of PROPFIND request was {@link DavConstants#PROPFIND_ALL_PROP}     * or {@link DavConstants#PROPFIND_PROPERTY_NAMES}.     *     * @return set of properties the client requested with a PROPFIND request     * @throws DavException In case of invalid request body     */    public DavPropertyNameSet getPropFindProperties() throws DavException;    /**     * Return the set of properties the client wanted to modify / create with a     * PROPPATCH request, i.e. all entries in the &lt;propertyupdate&gt; element     * of the request body with name &lt;set&gt;.     *     * @return set of properties the client wanted to modify / create with a     * PROPPATCH request.     * @throws DavException In case of invalid request body     * @deprecated use {@link #getPropPatchChangeList()} instead     */    public DavPropertySet getPropPatchSetProperties() throws DavException;    /**     * Return the set of property names the client wanted to remove with a     * PROPPATCH request, i.e. all entries in the &lt;propertyupdate&gt; element     * of the request body with name &lt;remove&gt;.<br>     * Note, that in constrast to the &lt;set&gt; Xml element, all the XML     * elements in a prop XML element inside of a remove XML element must be     * empty, as only the names of properties to be removed are required. Therefore     * a <code>DavPropertyNameSet</code> is returned and not a <code>DavPropertySet</code>     *     * @return set of property names the client wanted to remove with a     * PROPPATCH request.     * @throws DavException In case of invalid request body     * @deprecated use {@link #getPropPatchChangeList()} instead     */    public DavPropertyNameSet getPropPatchRemoveProperties() throws DavException;     /**      * Return a {@link List} of property change operations. Each entry      * is either of type {@link DavPropertyName}, indicating a &lt;remove&gt;      * operation, or of type {@link DavProperty}, indicating a &lt;set&gt;      * operation. Note that ordering is significant here.      *       * @return {@link List} of property change operations      * @throws DavException In case of invalid request body      */     public List getPropPatchChangeList() throws DavException;    /**     * Return the parsed 'lockinfo' request body, the {@link DavConstants#HEADER_TIMEOUT     * Timeout header} and the {@link DavConstants#HEADER_DEPTH Depth header}     * of a LOCK request as <code>LockInfo</code> object.     *     * @return <code>LockInfo</code> object encapsulating the information     * present in the LOCK request.     * @see DavConstants#HEADER_TIMEOUT     * @see DavConstants#HEADER_DEPTH     * @see DavConstants#XML_LOCKINFO     * @throws DavException     */    public LockInfo getLockInfo() throws DavException;    /**     * Returns true, if the {@link DavConstants#HEADER_IF If header} present     * with the request matches the given resource.     *     * @param resource     * @return true, if the test is successful, false otherwise.     */    public boolean matchesIfHeader(DavResource resource);    /**     * Returns true, if the {@link DavConstants#HEADER_IF If header} present     * with the request matches to the given href, token and eTag.     *     * @param href     * @param token     * @param eTag     * @return true, if the test is successful, false otherwise.     */    public boolean matchesIfHeader(String href, String token, String eTag);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -