Uses of Interface
com.atlassian.bitbucket.jenkins.internal.client.RequestConfiguration
-
Packages that use RequestConfiguration Package Description com.atlassian.bitbucket.jenkins.internal.client Add package level annotations to indicate everything is non-null by default.com.atlassian.bitbucket.jenkins.internal.credentials Add package level annotations to indicate everything is non-null by default.com.atlassian.bitbucket.jenkins.internal.http Add package level annotations to indicate everything is non-null by default. -
-
Uses of RequestConfiguration in com.atlassian.bitbucket.jenkins.internal.client
Methods in com.atlassian.bitbucket.jenkins.internal.client with parameters of type RequestConfiguration Modifier and Type Method Description void
HttpRequestExecutor. executeDelete(okhttp3.HttpUrl url, RequestConfiguration... additionalConfig)
Executes a delete call.<T> T
HttpRequestExecutor. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
Executes a Get call to a given URL.<T> T
HttpRequestExecutor. executePost(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
Executes a POST with a given URL and request payload, with any custom headers.<T> T
HttpRequestExecutor. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
Executes a PUT with a given URL and request payload.InputStream
HttpRequestExecutor. executeStreamingGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<InputStream> consumer, RequestConfiguration... additionalConfig)
Executes a streaming get call to a given URL.<T> BitbucketResponse<T>
BitbucketRequestExecutor. makeGetRequest(okhttp3.HttpUrl url, com.fasterxml.jackson.core.type.TypeReference<T> returnType, RequestConfiguration... additionalConfig)
Make a GET request to the url given.<T> BitbucketResponse<T>
BitbucketRequestExecutor. makeGetRequest(okhttp3.HttpUrl url, Class<T> returnType, RequestConfiguration... additionalConfig)
Make a GET request to the url given.<T> void
BitbucketRequestExecutor. makePostRequest(okhttp3.HttpUrl url, T requestPayload, RequestConfiguration... additionalConfig)
Makes a POST request to the given URL with given request payload.<T,R>
BitbucketResponse<R>BitbucketRequestExecutor. makePostRequest(okhttp3.HttpUrl url, T requestPayload, Class<R> returnType, RequestConfiguration... additionalConfig)
Makes a POST request to the given URL with given request payload.<T,R>
BitbucketResponse<R>BitbucketRequestExecutor. makePutRequest(okhttp3.HttpUrl url, T requestPayload, Class<R> returnType, RequestConfiguration... additionalConfig)
Makes a PUT request to the the given URL with given request payload -
Uses of RequestConfiguration in com.atlassian.bitbucket.jenkins.internal.credentials
Subinterfaces of RequestConfiguration in com.atlassian.bitbucket.jenkins.internal.credentials Modifier and Type Interface Description interface
BitbucketCredentials
Represents Bitbucket credential that will be used to make remote calls to Bitbucket server.Classes in com.atlassian.bitbucket.jenkins.internal.credentials that implement RequestConfiguration Modifier and Type Class Description static class
BitbucketCredentials.AnonymousCredentials
-
Uses of RequestConfiguration in com.atlassian.bitbucket.jenkins.internal.http
Classes in com.atlassian.bitbucket.jenkins.internal.http that implement RequestConfiguration Modifier and Type Class Description class
RetryOnRateLimitConfig
Configuration for request re-try.Methods in com.atlassian.bitbucket.jenkins.internal.http with parameters of type RequestConfiguration Modifier and Type Method Description void
HttpRequestExecutorImpl. executeDelete(okhttp3.HttpUrl url, RequestConfiguration... additionalConfig)
<T> T
HttpRequestExecutorImpl. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
<T> T
HttpRequestExecutorImpl. executePost(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
<T> T
HttpRequestExecutorImpl. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
InputStream
HttpRequestExecutorImpl. executeStreamingGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<InputStream> consumer, RequestConfiguration... additionalConfig)
-