Skip to content

Commit

Permalink
Merge pull request #3 from Kount/KS-181
Browse files Browse the repository at this point in the history
KS-181: removing CCYY and CCMM
  • Loading branch information
boyankukushev authored Aug 8, 2017
2 parents 0f76826 + a0abfb1 commit dd341bf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Kount Java SDK
### What is this repository for? ###

* Contains sources, tests, and resources for the Kount Java SDK
* SDK version: `6.5.1-SNAPSHOT`
* SDK version: `6.5.2`

### How do I get set up? ###

Expand Down
6 changes: 6 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 6.5.2 changes
---------------------
08/08/2017

1. Removed request parameters CCMM and CCYY

Version 6.5.1 changes
---------------------
06/23/2017
Expand Down
11 changes: 9 additions & 2 deletions kount-ris-sdk/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
Kount RIS Java SDK CHANGELOG
============================

Version 6.5.1-SNAPSHOT
======================
Version 6.5.2 changes
=====================
08/08/2017

1. Removed setters for request parameters CCMM and CCYY

Version 6.5.1 changes
=====================
06/23/2017

1. pom updates

Expand Down
15 changes: 0 additions & 15 deletions kount-ris-sdk/src/main/java/com/kount/ris/Request.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,21 +359,6 @@ public Request setPayment(String ptyp, String ptok) {
return this;
}

/**
* Set Card Expiration Date.
*
* @param month
* String Month in two digit format: MM.
* @param year
* String Year in four digit format: YYYY.
* @return this
*/
public Request setExpirationDate(String month, String year) {
params.put("CCMM", month);
params.put("CCYY", year);
return this;
}

/**
* Fetch the map of data parameters to send to RIS.
*
Expand Down

0 comments on commit dd341bf

Please sign in to comment.