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 voidHttpRequestExecutor. executeDelete(okhttp3.HttpUrl url, RequestConfiguration... additionalConfig)Executes a delete call.<T> THttpRequestExecutor. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)Executes a Get call to a given URL.<T> THttpRequestExecutor. 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> THttpRequestExecutor. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)Executes a PUT with a given URL and request payload.InputStreamHttpRequestExecutor. 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> voidBitbucketRequestExecutor. 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 interfaceBitbucketCredentialsRepresents 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 classBitbucketCredentials.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 classRetryOnRateLimitConfigConfiguration for request re-try.Methods in com.atlassian.bitbucket.jenkins.internal.http with parameters of type RequestConfiguration Modifier and Type Method Description voidHttpRequestExecutorImpl. executeDelete(okhttp3.HttpUrl url, RequestConfiguration... additionalConfig)<T> THttpRequestExecutorImpl. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)<T> THttpRequestExecutorImpl. executePost(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)<T> THttpRequestExecutorImpl. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)InputStreamHttpRequestExecutorImpl. executeStreamingGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<InputStream> consumer, RequestConfiguration... additionalConfig) 
 -