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

Commit

Permalink
feat: KEYP-96 update release notes and improve Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpierrefortune committed Jul 10, 2020
1 parent 8fcfcf7 commit 0ea5da9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Releases:
* fixed many issues raised by Sonarqube

### keyple-java-calypso 0.9a
* KEYP-96 : added Stored Value management commands
* KEYP-23 : added PIN management commands
* KEYP-101 : enhanced CalypsoPo with card data (updated during the transaction)
* KEYP-102 : update the content of CalypsoPo during selection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void finalizeBuilder(byte[] debitComplementaryData) {
/**
* Gets the SV Debit part of the data to include in the SAM SV Prepare Debit command
*
* @return a 12-byte array
* @return a byte array containing the SV debit data
*/
public byte[] getSvDebitData() {
byte[] svDebitData = new byte[12];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public SvGetCmdBuild(PoClass poClass, PoRevision poRevision, SvSettings.Operatio
/**
* Gets the request SV operation (used to check the SV command sequence)
*
* @return the current SvSettings.Operation item
* @return the current SvSettings.Operation enum value
*/
public SvSettings.Operation getSvOperation() {
return svOperation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void finalizeBuilder(byte[] reloadComplementaryData) {
/**
* Gets the SV Reload part of the data to include in the SAM SV Prepare Load command
*
* @return a 15-byte array
* @return a byte array containing the SV reload data
*/
public byte[] getSvReloadData() {
byte[] svReloadData = new byte[15];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void finalizeBuilder(byte[] undebitComplementaryData) {
/**
* Gets the SV Debit part of the data to include in the SAM SV Prepare Debit command
*
* @return a 12-byte array
* @return a byte array containing the SV undebit data
*/
public byte[] getSvUndebitData() {
byte[] svUndebitData = new byte[12];
Expand Down

0 comments on commit 0ea5da9

Please sign in to comment.