FetchOptions |
FetchOptions.allowTruncate() |
Enables response truncation.
|
static FetchOptions |
FetchOptions.Builder.allowTruncate() |
Create a FetchOptions that allows truncation of the response.
|
static FetchOptions |
FetchOptions.Builder.disallowTruncate() |
Create a FetchOptions that disallows truncation of the response.
|
FetchOptions |
FetchOptions.disallowTruncate() |
Disables response truncation.
|
static FetchOptions |
FetchOptions.Builder.doNotFollowRedirects() |
|
FetchOptions |
FetchOptions.doNotFollowRedirects() |
Disables following of redirects.
|
static FetchOptions |
FetchOptions.Builder.doNotValidateCertificate() |
Create a FetchOptions that does not perform SSL certificate
validation.
|
FetchOptions |
FetchOptions.doNotValidateCertificate() |
Disables certificate validation on HTTPS connections.
|
static FetchOptions |
FetchOptions.Builder.followRedirects() |
|
FetchOptions |
FetchOptions.followRedirects() |
Enables following of redirects.
|
FetchOptions |
HTTPRequest.getFetchOptions() |
Get the fetch options for this request.
|
FetchOptions |
FetchOptions.setDeadline(Double deadline) |
Sets the deadline, in seconds, for the fetch request.
|
static FetchOptions |
FetchOptions.Builder.validateCertificate() |
Create a FetchOptions that performs SSL certificate validation.
|
FetchOptions |
FetchOptions.validateCertificate() |
Enables certificate validation on HTTPS connections via the normal
CA-based mechanism.
|
static FetchOptions |
FetchOptions.Builder.withDeadline(double deadline) |
|
static FetchOptions |
FetchOptions.Builder.withDefaults() |
Helper method for creating a FetchOptions
instance with default values.
|