3.0.0
What's new in this version
- Added a dependency on apache commons http client which now takes care of HTTP calls instead of the vanilla java HttpUrlConnection. This gives us support for PATCH, and you can also optionally configure how this client works (in case you want connection pooling or timouts to be configured) via a builder in the CheckoutConfiguration class. This superseeds the original timeout variable that was previously available.
- Support for getting and updating instruments
Add to your Gradle project with:
dependencies {
implementation 'com.checkout:checkout-sdk-java:3.0.0'
}
Or add to your Maven project with:
<dependency>
<groupId>com.checkout</groupId>
<artifactId>checkout-sdk-java</artifactId>
<version>3.0.0</version>
</dependency>