public abstract class BaseDavRequest
extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase
Constructor and Description |
---|
BaseDavRequest(URI uri) |
Modifier and Type | Method and Description |
---|---|
void |
checkSuccess(org.apache.http.HttpResponse response)
Check the response and throw when it is considered to represent a failure.
|
Document |
getResponseBodyAsDocument(org.apache.http.HttpEntity entity)
Gets a
Document representing the response body. |
EventDiscovery |
getResponseBodyAsEventDiscovery(org.apache.http.HttpResponse response)
Return response body as
EventDiscovery object. |
LockDiscovery |
getResponseBodyAsLockDiscovery(org.apache.http.HttpResponse response)
Return response body as
LockDiscovery object. |
MultiStatus |
getResponseBodyAsMultiStatus(org.apache.http.HttpResponse response)
Return response body as
MultiStatus object. |
SubscriptionDiscovery |
getResponseBodyAsSubscriptionDiscovery(org.apache.http.HttpResponse response)
Return response body as
SubscriptionDiscovery object. |
DavException |
getResponseException(org.apache.http.HttpResponse response)
Obtain a
DavException representing the response. |
boolean |
succeeded(org.apache.http.HttpResponse response)
Check the provided
HttpResponse for successful execution. |
clone, expectContinue, getEntity, setEntity
getConfig, getMethod, getProtocolVersion, getRequestLine, getURI, releaseConnection, setConfig, setProtocolVersion, setURI, started, toString
abort, completed, isAborted, reset, setCancellable, setConnectionRequest, setReleaseTrigger
addHeader, addHeader, containsHeader, getAllHeaders, getFirstHeader, getHeaders, getLastHeader, getParams, headerIterator, headerIterator, removeHeader, removeHeaders, setHeader, setHeader, setHeaders, setParams
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
public BaseDavRequest(URI uri)
public Document getResponseBodyAsDocument(org.apache.http.HttpEntity entity) throws IOException
Document
representing the response body.null
for null entityIOException
- in case of I/O or XMP pasting problemspublic MultiStatus getResponseBodyAsMultiStatus(org.apache.http.HttpResponse response) throws DavException
MultiStatus
object.IllegalStateException
- when response does not represent a MultiStatus
DavException
- for failures in obtaining/parsing the response bodypublic LockDiscovery getResponseBodyAsLockDiscovery(org.apache.http.HttpResponse response) throws DavException
LockDiscovery
object.IllegalStateException
- when response does not represent a LockDiscovery
DavException
- for failures in obtaining/parsing the response bodypublic SubscriptionDiscovery getResponseBodyAsSubscriptionDiscovery(org.apache.http.HttpResponse response) throws DavException
SubscriptionDiscovery
object.IllegalStateException
- when response does not represent a SubscriptionDiscovery
DavException
- for failures in obtaining/parsing the response bodypublic EventDiscovery getResponseBodyAsEventDiscovery(org.apache.http.HttpResponse response) throws DavException
EventDiscovery
object.IllegalStateException
- when response does not represent a EventDiscovery
DavException
- for failures in obtaining/parsing the response bodypublic void checkSuccess(org.apache.http.HttpResponse response) throws DavException
DavException
public DavException getResponseException(org.apache.http.HttpResponse response)
DavException
representing the response.IllegalStateException
- when the response is considered to be successfulpublic boolean succeeded(org.apache.http.HttpResponse response)
HttpResponse
for successful execution. The default implementation treats all
2xx status codes (RFC 7231, Section 6.3).
Implementations can further restrict the accepted range of responses (or even check the response body).Copyright © 2004–2021 The Apache Software Foundation. All rights reserved.