Skip to content

Commit 470f728

Browse files
refactored
1 parent 3cc5b42 commit 470f728

12 files changed

+18
-14
lines changed

build/built-jar.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Wed, 14 Mar 2018 16:44:08 +0100
1+
#Wed, 14 Mar 2018 17:31:56 +0100
22

33

44
C\:\\Users\\Theresa\\Documents\\NetBeansProjects\\RaveJava=
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

lib/rave-java-1.0.1.jar

0 Bytes
Binary file not shown.

rave-java-1.0.1.jar

0 Bytes
Binary file not shown.

src/com/rave/AccountCharge.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
public class AccountCharge {
2323

2424

25-
final private Keys key = new Keys();
25+
private final Keys key = new Keys();
2626

2727
Encryption e=new Encryption();
2828

29-
private String accountnumber,accountbank,currency,country,amount,email,phonenumber,firstname,lastname,IP,
30-
txRef,passcode,device_fingerprint;
29+
private String accountnumber,accountbank,currency,country;
30+
private String amount,email,phonenumber,firstname,lastname;
31+
private String IP, txRef,passcode,device_fingerprint;
3132

3233
private String transaction_reference;//to be called
3334
private String otp;//to be called

src/com/rave/AlternativePayment.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ public class AlternativePayment {
2323
Encryption e=new Encryption();
2424
Keys key=new Keys();
2525

26-
private String accountnumber,accountbank,currency,country,amount,firstname,lastname,
27-
pin,email,IP,txRef,phonenumber,orderRef,network,flwRef;
26+
private String accountnumber,accountbank,currency,country;
27+
private String amount,firstname,lastname,network,flwRef;
28+
private String pin,email,IP,txRef,phonenumber,orderRef;
2829

2930

3031
/**

src/com/rave/CardCharge.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ public class CardCharge {
2424
ApiConnection apiConnection;
2525
Keys key=new Keys();
2626
Encryption e=new Encryption();
27-
private String cardno,cvv,expirymonth,expiryyear,currency,country,pin,suggested_auth,
28-
amount,email,phonenumber,firstname,lastname,txRef,redirect_url,device_fingerprint,IP,
29-
charge_type;
27+
private String cardno,cvv,expirymonth,expiryyear,currency,country;
28+
private String pin,suggested_auth, amount,email,phonenumber;
29+
private String firstname,lastname,txRef,redirect_url,device_fingerprint;
30+
private String IP, charge_type;
3031
private String transactionreference,otp, authUrl;
3132
/**
3233
*

0 commit comments

Comments
 (0)