<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,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
|