Uses of Interface
com.atlassian.bitbucket.jenkins.internal.client.RequestConfiguration
Packages that use RequestConfiguration
Package
Description
Add package level annotations to indicate everything is non-null by default.
Add package level annotations to indicate everything is non-null by default.
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 RequestConfigurationModifier and TypeMethodDescriptionvoidHttpRequestExecutor.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.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> 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.credentialsModifier and TypeInterfaceDescriptioninterfaceRepresents Bitbucket credential that will be used to make remote calls to Bitbucket server.Classes in com.atlassian.bitbucket.jenkins.internal.credentials that implement RequestConfiguration -
Uses of RequestConfiguration in com.atlassian.bitbucket.jenkins.internal.http
Classes in com.atlassian.bitbucket.jenkins.internal.http that implement RequestConfigurationMethods in com.atlassian.bitbucket.jenkins.internal.http with parameters of type RequestConfigurationModifier and TypeMethodDescriptionvoidHttpRequestExecutorImpl.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) HttpRequestExecutorImpl.executeStreamingGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<InputStream> consumer, RequestConfiguration... additionalConfig)