Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

6.42.0

Compare
Choose a tag to compare
@IngenicoEPayments IngenicoEPayments released this 11 Aug 07:40
· 6 commits to master since this release
  • Added:
    • Added property card to class RefundCardMethodSpecificOutput.
    • Added support for closing connections after each request. This can be used if you encounter org.apache.http.NoHttpResponseException even though you already close idle and expired connections. It can be enabled by setting configuration property connect.api.connectionReuse to false, or programmatically by calling setConnectionReuse(false) or withConnectionReuse(false) on a CommunicatorConfiguration instance. When manually creating instances of DefaultConnection, you need to use new class DefaultConnectionBuilder and its withConnectionReuse method.
      Note that this will impact performance, because a new connection needs to be setup for every single request. It's therefore advised to only use this feature if needed.