gpt4 book ai didi

org.apache.jackrabbit.webdav.WebdavRequestImpl.parsePropPatchRequest()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-22 04:55:05 26 4
gpt4 key购买 nike

本文整理了Java中org.apache.jackrabbit.webdav.WebdavRequestImpl.parsePropPatchRequest()方法的一些代码示例,展示了WebdavRequestImpl.parsePropPatchRequest()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebdavRequestImpl.parsePropPatchRequest()方法的具体详情如下:
包路径:org.apache.jackrabbit.webdav.WebdavRequestImpl
类名称:WebdavRequestImpl
方法名:parsePropPatchRequest

WebdavRequestImpl.parsePropPatchRequest介绍

[英]Parse the PROPPATCH request body.
[中]解析PROPPATCH请求主体。

代码示例

代码示例来源:origin: org.apache.jackrabbit/jackrabbit-jcr-webdav

/**
 * Return the list of 'remove' entries in the PROPPATCH request body. The list
 * is empty if the request body could not be parsed or if the request body did
 * not contain any 'remove' elements.
 *
 * @return the list of 'remove' entries in the PROPPATCH request body
 * @see DavServletRequest#getPropPatchRemoveProperties()
 * @deprecated use {@link #getPropPatchChangeList()} instead
 */
public DavPropertyNameSet getPropPatchRemoveProperties() throws DavException {
  if (proppatchRemove == null) {
    parsePropPatchRequest();
  }
  return proppatchRemove;
}

代码示例来源:origin: org.apache.jackrabbit/jackrabbit-jcr-webdav

/**
 * Return the list of 'set' entries in the PROPPATCH request body. The list
 * is empty if the request body could not be parsed or if the request body did
 * not contain any 'set' elements.
 *
 * @return the list of 'set' entries in the PROPPATCH request body
 * @see DavServletRequest#getPropPatchSetProperties()
 * @deprecated use {@link #getPropPatchChangeList()} instead
 */
public DavPropertySet getPropPatchSetProperties() throws DavException {
  if (proppatchSet == null) {
    parsePropPatchRequest();
  }
  return proppatchSet;
}

代码示例来源:origin: org.apache.jackrabbit/jackrabbit-jcr-webdav

/**
* Return a {@link List} of property change operations. Each entry
* is either of type {@link DavPropertyName}, indicating a <remove>
* operation, or of type {@link DavProperty}, indicating a <set>
* operation. Note that ordering is significant here.
*
* @return the list of change operations entries in the PROPPATCH request body
* @see DavServletRequest#getPropPatchChangeList()
*/
public List getPropPatchChangeList() throws DavException {
  if (proppatchList == null) {
    parsePropPatchRequest();
  }
  return proppatchList;
}

代码示例来源:origin: org.apache.jackrabbit/jackrabbit-webdav

/**
* Return a {@link List} of property change operations. Each entry
* is either of type {@link DavPropertyName}, indicating a <remove>
* operation, or of type {@link DavProperty}, indicating a <set>
* operation. Note that ordering is significant here.
*
* @return the list of change operations entries in the PROPPATCH request body
* @see DavServletRequest#getPropPatchChangeList()
*/
public List<? extends PropEntry> getPropPatchChangeList() throws DavException {
  if (proppatchList == null) {
    parsePropPatchRequest();
  }
  return proppatchList;
}

代码示例来源:origin: apache/jackrabbit

/**
* 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 the list of change operations entries in the PROPPATCH request body
* @see DavServletRequest#getPropPatchChangeList()
*/
public List<? extends PropEntry> getPropPatchChangeList() throws DavException {
  if (proppatchList == null) {
    parsePropPatchRequest();
  }
  return proppatchList;
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com