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

Commit

Permalink
Version 4.70
Browse files Browse the repository at this point in the history
  • Loading branch information
vpietri-tbd authored and thomasmonext committed Jun 9, 2022
1 parent 05793a6 commit 7f30ae2
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
----------------------------------------

* 4.70 (2022-05-04)
* Update WSDL from 4.69 to 4.70
* new parameter encData for sdk

----------------------------------------

* 4.69 (2022-01-19)
* Update WSDL from 4.68 to 4.69
* new parameters threeDSinfo, travelFileNumber for doAuthorization
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add this dependency in your project's POM:
<dependency>
<groupId>com.payline</groupId>
<artifactId>payline-java-sdk</artifactId>
<version>4.69</version>
<version>4.70</version>
</dependency>
```

Expand All @@ -34,7 +34,7 @@ Add this dependency in your project's POM:
<dependency>
<groupId>com.payline</groupId>
<artifactId>payline-java-sdk</artifactId>
<version>4.69</version>
<version>4.70</version>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.payline</groupId>
<artifactId>payline-java-sdk</artifactId>
<version>4.69</version>
<version>4.70</version>
<name>Payline JAVA SDK Project</name>
<description>Modified for TBD using last WSDL from https://docs.monext.fr/display/DT/Endpoints. The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.</description>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/payline/kit/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public final class Utils {
/**
* kit version
*/
private static final String kitVersion = "kit JAVA v4.69";
private static final String kitVersion = "kit JAVA v4.70";

private static final String HTTP_PROXY_SET = "http.proxySet";
private static final String HTTP_PROXY_HOST = "http.proxyHost";
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/wsdls/DirectPaymentAPI.wsdl
Original file line number Diff line number Diff line change
Expand Up @@ -2875,6 +2875,7 @@
<element name="maxTimeout" nillable="true" type="xsd:integer"/>
<element name="referenceNumber" nillable="true" type="xsd:string"/>
<element name="transID" nillable="true" type="xsd:string"/>
<element name="encData" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="merchantAuthentication">
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/wsdls/ExtendedAPI.wsdl
Original file line number Diff line number Diff line change
Expand Up @@ -2875,6 +2875,7 @@
<element name="maxTimeout" nillable="true" type="xsd:integer"/>
<element name="referenceNumber" nillable="true" type="xsd:string"/>
<element name="transID" nillable="true" type="xsd:string"/>
<element name="encData" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="merchantAuthentication">
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/wsdls/WebPaymentAPI.wsdl
Original file line number Diff line number Diff line change
Expand Up @@ -2875,6 +2875,7 @@
<element name="maxTimeout" nillable="true" type="xsd:integer"/>
<element name="referenceNumber" nillable="true" type="xsd:string"/>
<element name="transID" nillable="true" type="xsd:string"/>
<element name="encData" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="merchantAuthentication">
Expand Down

0 comments on commit 7f30ae2

Please sign in to comment.