Package com.adyen.httpclient
Interface ClientInterface
-
- All Known Implementing Classes:
AdyenHttpClient
public interface ClientInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringrequest(String endpoint, String requestBody, Config config)Stringrequest(String endpoint, String requestBody, Config config, boolean isApiKeyRequired)Stringrequest(String endpoint, String requestBody, Config config, boolean isApiKeyRequired, RequestOptions requestOptions)Stringrequest(String endpoint, String requestBody, Config config, boolean isApiKeyRequired, RequestOptions requestOptions, ApiConstants.HttpMethod httpMethod)Stringrequest(String endpoint, String requestBody, Config config, boolean isApiKeyRequired, RequestOptions requestOptions, ApiConstants.HttpMethod httpMethod, Map<String,String> params)
-
-
-
Method Detail
-
request
String request(String endpoint, String requestBody, Config config) throws IOException, HTTPClientException
- Throws:
IOExceptionHTTPClientException
-
request
String request(String endpoint, String requestBody, Config config, boolean isApiKeyRequired) throws IOException, HTTPClientException
- Throws:
IOExceptionHTTPClientException
-
request
String request(String endpoint, String requestBody, Config config, boolean isApiKeyRequired, RequestOptions requestOptions) throws IOException, HTTPClientException
- Throws:
IOExceptionHTTPClientException
-
request
String request(String endpoint, String requestBody, Config config, boolean isApiKeyRequired, RequestOptions requestOptions, ApiConstants.HttpMethod httpMethod) throws IOException, HTTPClientException
- Throws:
IOExceptionHTTPClientException
-
request
String request(String endpoint, String requestBody, Config config, boolean isApiKeyRequired, RequestOptions requestOptions, ApiConstants.HttpMethod httpMethod, Map<String,String> params) throws IOException, HTTPClientException
- Throws:
IOExceptionHTTPClientException
-
-