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

Commit

Permalink
Release 6.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingenico ePayments committed Aug 30, 2019
1 parent e437166 commit b00ff7c
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.ingenico.connect.gateway</groupId>
<artifactId>connect-sdk-java</artifactId>
<version>6.3.0</version>
<version>6.4.0</version>
<packaging>jar</packaging>

<name>connect-sdk-java</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ public void setCustomerReference(String value) {
}

/**
* The language of the customer.
* The language code of the customer, one of de, en, es, fr, it, nl, si, sk, sv.
*/
public String getLanguage() {
return language;
}

/**
* The language of the customer.
* The language code of the customer, one of de, en, es, fr, it, nl, si, sk, sv.
*/
public void setLanguage(String value) {
this.language = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ public void setThreeDSecureResults(ThreeDSecureResults value) {
}

/**
* If a token was used for or created during the payment, then the ID of that token. This property is only populated for payments on the Ogone payment platform.
* If a token was used for or created during the payment, then the ID of that token.
*/
public String getToken() {
return token;
}

/**
* If a token was used for or created during the payment, then the ID of that token. This property is only populated for payments on the Ogone payment platform.
* If a token was used for or created during the payment, then the ID of that token.
*/
public void setToken(String value) {
this.token = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ public void setPaymentProduct840SpecificOutput(PaymentProduct840SpecificOutput v
}

/**
* ID of the token. This property is populated for the Ogone payment platform when the payment was done with a token or when the payment was tokenized.
* ID of the token. This property is populated when the payment was done with a token or when the payment was tokenized.
*/
public String getToken() {
return token;
}

/**
* ID of the token. This property is populated for the Ogone payment platform when the payment was done with a token or when the payment was tokenized.
* ID of the token. This property is populated when the payment was done with a token or when the payment was tokenized.
*/
public void setToken(String value) {
this.token = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void setReturnUrl(String value) {
* <ul class="paragraph-width"><li>Redirection page - All redirection using a POST method will load a page in the browser of the customer that performs the actual redirection. This page contains a message to the customer explaining what is happening.
* <li>MethodURL page - Certain Issuers will use a specific flow in case of 3-D Secure version 2 to directly collect information from the customer browser. This page contains a spinner indicating that this process is going on in.
* </ul>
* By specifying a specific variant you can force the use of another variant than the default. This allows you to test out the effect of certain changes to your MyCheckout payment pages in a controlled manner. Please note that you need to specify the ID instead of the name of the variant.
* By specifying a specific variant you can force the use of another variant than the default. This allows you to test out the effect of certain changes to your MyCheckout payment pages in a controlled manner. Please note that you need to specify the ID instead of the name of the variant.<br>Note: In case you have defined a Dynamic 3D Secure rule that takes the variant into account this will only work if you explicitly specify the ID using this property.
*/
public String getVariant() {
return variant;
Expand All @@ -47,7 +47,7 @@ public String getVariant() {
* <ul class="paragraph-width"><li>Redirection page - All redirection using a POST method will load a page in the browser of the customer that performs the actual redirection. This page contains a message to the customer explaining what is happening.
* <li>MethodURL page - Certain Issuers will use a specific flow in case of 3-D Secure version 2 to directly collect information from the customer browser. This page contains a spinner indicating that this process is going on in.
* </ul>
* By specifying a specific variant you can force the use of another variant than the default. This allows you to test out the effect of certain changes to your MyCheckout payment pages in a controlled manner. Please note that you need to specify the ID instead of the name of the variant.
* By specifying a specific variant you can force the use of another variant than the default. This allows you to test out the effect of certain changes to your MyCheckout payment pages in a controlled manner. Please note that you need to specify the ID instead of the name of the variant.<br>Note: In case you have defined a Dynamic 3D Secure rule that takes the variant into account this will only work if you explicitly specify the ID using this property.
*/
public void setVariant(String value) {
this.variant = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public class SepaDirectDebitPaymentMethodSpecificOutput extends AbstractPaymentM

private PaymentProduct771SpecificOutput paymentProduct771SpecificOutput = null;

private String token = null;

/**
* Object containing the results of the fraud screening
*/
Expand Down Expand Up @@ -39,4 +41,18 @@ public PaymentProduct771SpecificOutput getPaymentProduct771SpecificOutput() {
public void setPaymentProduct771SpecificOutput(PaymentProduct771SpecificOutput value) {
this.paymentProduct771SpecificOutput = value;
}

/**
* ID of the token. This property is populated for the GlobalCollect payment platform when the payment was done with a token or when the payment was tokenized.
*/
public String getToken() {
return token;
}

/**
* ID of the token. This property is populated for the GlobalCollect payment platform when the payment was done with a token or when the payment was tokenized.
*/
public void setToken(String value) {
this.token = value;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
public class MetaDataProvider {

private static final String SDK_VERSION = "6.3.0";
private static final String SDK_VERSION = "6.4.0";

private static final String SERVER_META_INFO_HEADER = "X-GCS-ServerMetaInfo";
static final Set<String> PROHIBITED_HEADERS;
Expand Down

0 comments on commit b00ff7c

Please sign in to comment.