-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPayment.java
More file actions
265 lines (252 loc) · 5.9 KB
/
Payment.java
File metadata and controls
265 lines (252 loc) · 5.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
package com.maxmind.minfraud.request;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.maxmind.minfraud.AbstractModel;
/**
* The payment information for the transaction.
*/
public final class Payment extends AbstractModel {
private final Processor processor;
private final Boolean wasAuthorized;
private final String declineCode;
private Payment(Payment.Builder builder) {
processor = builder.processor;
wasAuthorized = builder.wasAuthorized;
declineCode = builder.declineCode;
}
/**
* {@code Builder} creates instances of {@code Payment} from values set by the builder's
* methods.
*/
public static final class Builder {
Processor processor;
Boolean wasAuthorized;
String declineCode;
/**
* @param processor The payment processor used for the transaction.
* @return The builder object.
*/
public Payment.Builder processor(Processor processor) {
this.processor = processor;
return this;
}
/**
* @param wasAuthorized The authorization outcome from the payment processor. If the
* transaction has not yet been approved or denied, do not include this
* field.
* @return The builder object.
*/
public Payment.Builder wasAuthorized(boolean wasAuthorized) {
this.wasAuthorized = wasAuthorized;
return this;
}
/**
* @param declineCode The decline code as provided by your payment processor. If the
* transaction was not declined, do not include this field.
* @return The builder object.
*/
public Payment.Builder declineCode(String declineCode) {
this.declineCode = declineCode;
return this;
}
/**
* @return an instance of {@code Payment} created from the fields set on this builder.
*/
public Payment build() {
return new Payment(this);
}
}
/**
* @return The payment processor.
*/
@JsonProperty("processor")
public Processor getProcessor() {
return processor;
}
/**
* @return The authorization outcome.
*/
@JsonProperty("was_authorized")
public Boolean wasAuthorized() {
return wasAuthorized;
}
/**
* @return The decline code.
*/
@JsonProperty("decline_code")
public String getDeclineCode() {
return declineCode;
}
/**
* Enumeration of payment processors
*/
public enum Processor {
// These should exactly match the mF2 request enum value except they
// should be all uppercase.
ADYEN,
AFFIRM,
AFTERPAY,
ALTAPAY,
AMAZON_PAYMENTS,
AMERICAN_EXPRESS_PAYMENT_GATEWAY,
APPLE_PAY,
APS_PAYMENTS,
AUTHORIZENET,
BALANCED,
BEANSTREAM,
BLUEPAY,
BLUESNAP,
BOACOMPRA,
BOKU,
BPOINT,
BRAINTREE,
CARDKNOX,
CARDPAY,
CASHFREE,
CCAVENUE,
CCNOW,
CETELEM,
CHASE_PAYMENTECH,
CHECKOUT_COM,
CIELO,
COLLECTOR,
COMMDOO,
COMPROPAGO,
CONCEPT_PAYMENTS,
CONEKTA,
COREGATEWAY,
CREDITGUARD,
CREDORAX,
CRYPTOMUS,
CT_PAYMENTS,
CUENTADIGITAL,
CUROPAYMENTS,
CYBERSOURCE,
DALENYS,
DALPAY,
DATACAP,
DATACASH,
DIBS,
DIGITAL_RIVER,
DLOCAL,
DOTPAY,
EBS,
ECOMM365,
ECOMMPAY,
ELAVON,
EMERCHANTPAY,
EPAY,
EPAYCO,
EPROCESSING_NETWORK,
EPX,
EWAY,
EXACT,
FIRST_ATLANTIC_COMMERCE,
FIRST_DATA,
FISERV,
G2A_PAY,
GLOBAL_PAYMENTS,
GOCARDLESS,
GOOGLE_PAY,
HEARTLAND,
HIPAY,
INGENICO,
INTERAC,
INTERNETSECURE,
INTUIT_QUICKBOOKS_PAYMENTS,
IUGU,
KLARNA,
KOMOJU,
LEMON_WAY,
MASTERCARD_PAYMENT_GATEWAY,
MERCADOPAGO,
MERCANET,
MERCHANT_ESOLUTIONS,
MIRJEH,
MOLLIE,
MONERIS_SOLUTIONS,
NEOPAY,
NEOSURF,
NMI,
OCEANPAYMENT,
ONEY,
ONPAY,
OPENBUCKS,
OPENPAYMX,
OPTIMAL_PAYMENTS,
ORANGEPAY,
OTHER,
PACNET_SERVICES,
PAYCONEX,
PAYEEZY,
PAYFAST,
PAYGATE,
PAYLIKE,
PAYMENT_EXPRESS,
PAYMENTWALL,
PAYONE,
PAYPAL,
PAYPLUS,
PAYSAFECARD,
PAYSERA,
PAYSTATION,
PAYTM,
PAYTRACE,
PAYTRAIL,
PAYTURE,
PAYU,
PAYULATAM,
PAYVISION,
PAYWAY,
PAYZA,
PINPAYMENTS,
PLACETOPAY,
POSCONNECT,
PRINCETON_PAYMENT_SOLUTIONS,
PSIGATE,
PXP_FINANCIAL,
QIWI,
QUICKPAY,
RABERIL,
RAZORPAY,
REDE,
REDPAGOS,
REWARDSPAY,
SAFECHARGE,
SAGEPAY,
SECUREPAY,
SECURETRADING,
SHOPIFY_PAYMENTS,
SIMPLIFY_COMMERCE,
SKRILL,
SMARTCOIN,
SMARTDEBIT,
SOLIDTRUST_PAY,
SPS_DECIDIR,
STRIPE,
SYNAPSEFI,
SYSTEMPAY,
TELERECARGAS,
TOWAH,
TRANSACT_PRO,
TRUSTLY,
TRUSTPAY,
TSYS,
USA_EPAY,
VANTIV,
VEREPAY,
VERICHECK,
VINDICIA,
VIRTUAL_CARD_SERVICES,
VME,
VPOS,
WINDCAVE,
WIRECARD,
WORLDPAY;
/**
* @return a string representation of the object.
*/
public String toString() {
return this.name().toLowerCase();
}
}
}