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

Commit

Permalink
fix encoding issues in some java comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilles DAVIN committed Mar 4, 2016
1 parent c2bafdd commit 9fe374e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/payline/kit/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public static void setHTTPBasicCredentialAndEndPointFromBundle(final Object prox
System.setProperty("http.proxyPassword", PaylineProperties.getString("PROXY_PWD"));
}
} else {
// Suppression des param�tres proxy pour �viter un effet cache
// remove proxy parameters to prevent cache side effects
System.setProperty("http.proxySet", "false");
System.clearProperty("http.proxyHost");
System.clearProperty("http.proxyPort");
Expand Down Expand Up @@ -217,7 +217,7 @@ public static void setHTTPBasicCredentialAndEndPointFromParams(final Object prox
System.setProperty("http.proxyPassword", params.getProxyPassword());
}
} else {
// Suppression des param�tres proxy pour �viter un effet cache
// remove proxy parameters to prevent cache side effects
System.setProperty("http.proxySet", "false");
System.clearProperty("http.proxyHost");
System.clearProperty("http.proxyPort");
Expand Down Expand Up @@ -447,7 +447,7 @@ public static String gzipDecompress(final byte[] decrypt) {
}
} catch (Exception e) {
e.printStackTrace();
logger.log(LOG_LEVEL, "Erreur lors de la d�compression");
logger.log(LOG_LEVEL, "unexpected error during GZip inflation");
}
return outStr;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/payline/ws/wrapper/DirectPayment.java
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ public final VerifyEnrollmentResponse verifyEnrollment(final Card card, final Pa
}

/**
* Verify that the buyer’s card is 3DSecure.
* Verify that the buyers card is 3DSecure.
* @param card the card object, containing the card data : number, expirationDate, cvx,...
* @param payment the payment object containing the amount, the currency, action and mode codes
* @param orderRef the order reference
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/payline/ws/wrapper/WalletPayment.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public WalletPayment(ConnectParams connectParams) {
}

/**
* Create a customer wallet. The createWallet function is used to create a virtual wallet for your customer. In order to validate the use of a wallet,
* Create a customer wallet. The 'createWallet' function is used to create a virtual wallet for your customer. In order to validate the use of a wallet,
* Payline performs an e-payment check of the payment method via an authorization transaction of 1 euro which will not then be validated (no actual
* payment).
* @param wallet the wallet object, containing the walletId and data about its owner (firstName, lastName, email,...)
Expand Down Expand Up @@ -157,7 +157,7 @@ public final CreateWalletResponse createWallet(final Wallet wallet, final String
}

/**
* Retrieve information making up the customer wallet The getWallet function retrieves virtual wallet data.
* Retrieve information making up the customer wallet The 'getWallet' function retrieves virtual wallet data.
* @param walletId the wallet identifier
* @param contractNumber Payline identifier of your e-commerce contract number
* @param Cardind within a wallet, index of the card to be used for payment
Expand Down Expand Up @@ -193,7 +193,7 @@ public final GetWalletResponse getWallet(final String walletId, final String con
}

/**
* Update customer wallet. The updateWallet function is used to update the virtual wallet.
* Update customer wallet. The 'updateWallet' function is used to update the virtual wallet.
* @param wallet the wallet object, containing the walletId and data about its owner (firstName, lastName, email,...)
* @param contractNumber Payline identifier of your e-commerce contract number
* @param privateDataList A list of privateData, allowing to send any kind of extra information organized with keys and values
Expand Down Expand Up @@ -234,7 +234,7 @@ public final UpdateWalletResponse updateWallet(final Wallet wallet, final String
}

/**
* Deactivate a customer wallet. The disableWalletResponse message is the response from Payline to a virtual wallet deactivation request.
* Deactivate a customer wallet. The 'disableWalletResponse' message is the response from Payline to a virtual wallet deactivation request.
* @param walletIdList the list of virtual wallet ID
* @param contractNumber Payline identifier of your e-commerce contract number
* @param Cardind within a wallet, index of the card to be used for payment
Expand Down Expand Up @@ -640,7 +640,7 @@ public final UpdateBillingRecordResponse updateBillingRecord(final String contra
/**
* Create a customer wallet using web pages The <b>createWebWallet</b> function initialises the creation of a virtual wallet via the web interface. Once
* your customer is redirected, they are asked to enter their card details to create their virtual wallet. Payline checks this information by a debit
* authorization request for a sum of 1 (validation does not take place so no card is credited on creation) and registers the customer wallet with the ID
* authorization request for a sum of EUR 1 (validation does not take place so no card is credited on creation) and registers the customer wallet with the ID
* (walletId) you have provided.
* @param buyer the buyer object, containing many information about the buyer: firstname, lastname, email, addresses,...
* @param privateDataList A list of privateData, allowing to send any kind of extra information organized with keys and values
Expand Down

0 comments on commit 9fe374e

Please sign in to comment.