-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathBaseOrder.java
More file actions
670 lines (522 loc) · 16.5 KB
/
BaseOrder.java
File metadata and controls
670 lines (522 loc) · 16.5 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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
package com.riskified.models;
import java.util.*;
import com.riskified.validations.*;
public abstract class BaseOrder implements IValidated {
protected String id;
private String email;
private Date createdAt;
private Date updatedAt;
private String currency;
private String gateway;
private Double totalPrice;
private NoChargeAmount nochargeAmount;
private String browserIp;
private Customer customer;
private List<LineItem> lineItems;
private String name;
private List<String> additionalEmails;
private String note;
private String number;
private String orderNumber;
private String cancelReason;
private Date cancelledAt;
private Date closedAt;
private String cartToken;
private String deviceId;
private String checkoutToken;
private String token;
private String referringSite;
private Boolean confirmed;
private Boolean buyerAcceptsMarketing;
private String financialStatus;
private String fulfillmentStatus;
private String landingSite;
private String landingSiteRef;
private String locationId;
private String source;
private String sourceIdentifier;
private String sourceName;
private String sourceUrl;
private Double subtotalPrice;
private Boolean taxesIncluded;
private Double totalDiscounts;
private Double totalLineItemsPrice;
private Double totalPriceUsd;
private Double totalTax;
private Double totalWeight;
private String userId;
private String processingMethod;
private String checkoutId;
private String tags;
private String vendorId;
private String vendorName;
private String vendorIntegrationType;
private List<Address> shippingAddress;
private List<Address> billingAddress;
private List<? extends IPaymentDetails> paymentDetails;
private ClientDetails clientDetails;
private List<DiscountCode> discountCodes;
private List<ShippingLine> shippingLines;
private List<Attributes> noteAttributes;
private List<TaxLine> taxLines;
private DecisionDetails decision;
private List<Passenger> passengers;
private Map<String, Object> additionalData;
private String orderType;
private List<ChargeFreePaymentDetails> chargeFreePaymentDetails;
private CommunicationDetails communicationDetails;
private String submissionReason;
private Custom custom;
public BaseOrder() {
}
public void validate(Validation validationType) throws FieldBadFormatException {
Validate.notNullOrEmpty(this, this.id, "Id");
if (validationType == Validation.ALL) {
// Validated required fields
Validate.notNullOrEmpty(this, this.name, "Name");
Validate.notNullOrEmpty(this, this.email, "Email");
Validate.notNull(this, this.createdAt, "Created At");
Validate.notNull(this, this.updatedAt, "Updated At");
Validate.notNullOrEmpty(this, this.gateway, "Gateway");
if (this.source != null && !this.source.equalsIgnoreCase("phone")){
Validate.notNullOrEmpty(this, this.browserIp, "Browser IP");
}
Validate.notNull(this, this.totalPrice, "Total Price");
Validate.notNull(this, this.lineItems, "Line Items");
if (this.gateway != null && !this.gateway.equalsIgnoreCase("giftcard")){
Validate.notNull(this, this.paymentDetails, "Payment Details");
}
Validate.notNull(this, this.customer, "Customer");
Validate.notNull(this, this.billingAddress, "Billing Address");
}
if (this.totalPrice != null) {
Validate.isNumberNegativeOrZero(this, this.totalPrice, "Total Price");
}
if (this.browserIp != null) {
Validate.ipAddress(this, this.browserIp, "Browser IP");
}
if (this.currency != null) {
Validate.currencyCode(this, currency, "Currency");
}
if (this.email != null) {
Validate.emailAddress(this, this.email, "Email");
}
if (this.lineItems != null) {
for (LineItem lineItem : this.lineItems) {
lineItem.validate(validationType);
}
}
if (this.discountCodes != null) {
for (DiscountCode discountCode : this.discountCodes) {
discountCode.validate(validationType);
}
}
if (this.shippingLines != null) {
for (ShippingLine shippingLine : this.shippingLines) {
shippingLine.validate(validationType);
}
}
if (this.paymentDetails != null) {
for (IPaymentDetails paymentDetail : this.paymentDetails) {
paymentDetail.validate(validationType);
}
}
if (this.customer != null) {
this.customer.validate(validationType);
}
if (this.billingAddress != null) {
for (Address billingAddress : this.billingAddress) {
billingAddress.validate(validationType);
}
}
if (this.shippingAddress != null) {
for (Address shippingAddress : this.shippingAddress) {
shippingAddress.validate(validationType);
}
}
if (this.decision != null) {
this.decision.validate(validationType);
}
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(Date updatedAt) {
this.updatedAt = updatedAt;
}
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public String getGateway() {
return gateway;
}
public void setGateway(String gateway) {
this.gateway = gateway;
}
public Double getTotalPrice() {
return totalPrice;
}
public void setTotalPrice(double totalPrice) {
this.totalPrice = totalPrice;
}
public String getBrowserIp() {
return browserIp;
}
public void setBrowserIp(String browserIp) {
this.browserIp = browserIp;
}
public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
public List<LineItem> getLineItems() {
return lineItems;
}
public void setLineItems(List<LineItem> lineItems) {
this.lineItems = lineItems;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<String> getAdditionalEmails() {
return additionalEmails;
}
public void setAdditionalEmails(List<String> additionalEmails) {
this.additionalEmails = additionalEmails;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
public String getOrderNumber() {
return orderNumber;
}
public void setOrderNumber(String orderNumber) {
this.orderNumber = orderNumber;
}
public String getCancelReason() {
return cancelReason;
}
public void setCancelReason(String cancelReason) {
this.cancelReason = cancelReason;
}
public Date getCancelledAt() {
return cancelledAt;
}
public void setCancelledAt(Date cancelledAt) {
this.cancelledAt = cancelledAt;
}
public Date getClosedAt() {
return closedAt;
}
public void setClosedAt(Date closedAt) {
this.closedAt = closedAt;
}
public String getCartToken() {
return cartToken;
}
public void setCartToken(String cartToken) {
this.cartToken = cartToken;
}
public String getDeviceId() { return deviceId; }
public void setDeviceId(String deviceId) { this.deviceId = deviceId; }
public String getCheckoutToken() {
return checkoutToken;
}
public void setCheckoutToken(String checkoutToken) {
this.checkoutToken = checkoutToken;
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getReferringSite() {
return referringSite;
}
public void setReferringSite(String referringSite) {
this.referringSite = referringSite;
}
public Boolean getConfirmed() {
return confirmed;
}
public void setConfirmed(Boolean confirmed) {
this.confirmed = confirmed;
}
public Boolean getBuyerAcceptsMarketing() {
return buyerAcceptsMarketing;
}
public void setBuyerAcceptsMarketing(Boolean buyerAcceptsMarketing) {
this.buyerAcceptsMarketing = buyerAcceptsMarketing;
}
public String getFinancialStatus() {
return financialStatus;
}
public void setFinancialStatus(String financialStatus) {
this.financialStatus = financialStatus;
}
public String getFulfillmentStatus() {
return fulfillmentStatus;
}
public void setFulfillmentStatus(String fulfillmentStatus) {
this.fulfillmentStatus = fulfillmentStatus;
}
public String getLandingSite() {
return landingSite;
}
public void setLandingSite(String landingSite) {
this.landingSite = landingSite;
}
public String getLandingSiteRef() {
return landingSiteRef;
}
public void setLandingSiteRef(String landingSiteRef) {
this.landingSiteRef = landingSiteRef;
}
public String getLocationId() {
return locationId;
}
public void setLocationId(String locationId) {
this.locationId = locationId;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getSourceIdentifier() {
return sourceIdentifier;
}
public void setSourceIdentifier(String sourceIdentifier) {
this.sourceIdentifier = sourceIdentifier;
}
public String getSourceName() {
return sourceName;
}
public void setSourceName(String sourceName) {
this.sourceName = sourceName;
}
public String getSourceUrl() {
return sourceUrl;
}
public void setSourceUrl(String sourceUrl) {
this.sourceUrl = sourceUrl;
}
public Double getSubtotalPrice() {
return subtotalPrice;
}
public void setSubtotalPrice(double subtotalPrice) {
this.subtotalPrice = subtotalPrice;
}
public Boolean getTaxesIncluded() {
return taxesIncluded;
}
public void setTaxesIncluded(Boolean taxesIncluded) {
this.taxesIncluded = taxesIncluded;
}
public Double getTotalDiscounts() {
return totalDiscounts;
}
public void setTotalDiscounts(double totalDiscounts) {
this.totalDiscounts = totalDiscounts;
}
public Double getTotalLineItemsPrice() {
return totalLineItemsPrice;
}
public void setTotalLineItemsPrice(double totalLineItemsPrice) {
this.totalLineItemsPrice = totalLineItemsPrice;
}
public Double getTotalPriceUsd() {
return totalPriceUsd;
}
public void setTotalPriceUsd(double totalPriceUsd) {
this.totalPriceUsd = totalPriceUsd;
}
public Double getTotalTax() {
return totalTax;
}
public void setTotalTax(double totalTax) {
this.totalTax = totalTax;
}
public Double getTotalWeight() {
return totalWeight;
}
public void setTotalWeight(double totalWeight) {
this.totalWeight = totalWeight;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getProcessingMethod() {
return processingMethod;
}
public void setProcessingMethod(String processingMethod) {
this.processingMethod = processingMethod;
}
public String getCheckoutId() {
return checkoutId;
}
public void setCheckoutId(String checkoutId) {
this.checkoutId = checkoutId;
}
public String getTags() {
return tags;
}
public void setTags(String tags) {
this.tags = tags;
}
public String getVendorId() {
return vendorId;
}
public void setVendorId(String vendorId) {
this.vendorId = vendorId;
}
public String getVendorName() {
return vendorName;
}
public void setVendorName(String vendorName) {
this.vendorName = vendorName;
}
public String getVendorIntegrationType() {
return vendorIntegrationType;
}
public void setVendorIntegrationType(String vendorIntegrationType) {
this.vendorIntegrationType = vendorIntegrationType;
}
public List<Address> getShippingAddress() {return shippingAddress;}
public void setShippingAddress(List<Address> shippingAddress) {
this.shippingAddress = shippingAddress;
}
public List<Address> getBillingAddress() {
return billingAddress;
}
public void setBillingAddress(List<Address> billingAddress) {
this.billingAddress = billingAddress;
}
public List<? extends IPaymentDetails> getPaymentDetails(){
return paymentDetails;
}
public void setPaymentDetails(List<? extends IPaymentDetails> paymentDetails) {
this.paymentDetails = paymentDetails;
}
public ClientDetails getClientDetails() {
return clientDetails;
}
public void setClientDetails(ClientDetails clientDetails) {
this.clientDetails = clientDetails;
}
public List<DiscountCode> getDiscountCodes() {
return discountCodes;
}
public void setDiscountCodes(List<DiscountCode> discountCodes) {
this.discountCodes = discountCodes;
}
public List<ShippingLine> getShippingLines() {
return shippingLines;
}
public void setShippingLines(List<ShippingLine> shippingLines) {
this.shippingLines = shippingLines;
}
public List<Attributes> getNoteAttributes() {
return noteAttributes;
}
public void setNoteAttributes(List<Attributes> noteAttributes) {
this.noteAttributes = noteAttributes;
}
public List<TaxLine> getTaxLines() {
return taxLines;
}
public void setTaxLines(List<TaxLine> taxLines) {
this.taxLines = taxLines;
}
public DecisionDetails getDecision() {
return decision;
}
public void setDecision(DecisionDetails decision) {
this.decision = decision;
}
public List<Passenger> getPassengers() {
return passengers;
}
public void setPassengers(List<Passenger> passengers) {
this.passengers = passengers;
}
public Map<String, Object> getAdditionalData() {
return additionalData;
}
public void setAdditionalData(Map<String, Object> additionalData) {
this.additionalData = additionalData;
}
public NoChargeAmount getNochargeAmount() {
return nochargeAmount;
}
public void setNochargeAmount(NoChargeAmount nochargeAmount) {
this.nochargeAmount = nochargeAmount;
}
public String getOrderType() {
return orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public List<ChargeFreePaymentDetails> getChargeFreePaymentDetails() {
return chargeFreePaymentDetails;
}
public void setChargeFreePaymentDetails(
List<ChargeFreePaymentDetails> chargeFreePaymentDetails) {
this.chargeFreePaymentDetails = chargeFreePaymentDetails;
}
public String getSubmissionReason() {
return submissionReason;
}
public void setSubmissionReason(String submissionReason) {
this.submissionReason = submissionReason;
}
public CommunicationDetails getCommunicationDetails() { return communicationDetails; }
public void setCommunicationDetails(CommunicationDetails communicationDetails) { this.communicationDetails = communicationDetails; }
public Custom getCustom() {
return custom;
}
public void setCustom(Custom custom) {
this.custom = custom;
}
}