Skip to content

Commit 6c3eea5

Browse files
authored
Merge pull request #97 from PAXTechnologyInc/cert-wex
[ADJ-313] Support WEX EMV
2 parents 28cd60c + 4ddd41d commit 6c3eea5

File tree

2 files changed

+91
-0
lines changed

2 files changed

+91
-0
lines changed

lib-ui-constant/src/main/java/com/pax/us/pay/ui/constant/entry/EntryExtraData.java

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,55 @@ private EntryExtraData(){
717717
*/
718718
public static final String PARAM_FLEET_LICENSE_NUMBER_PATTERN = "fleetLicenseNumberPattern";
719719

720+
/**
721+
* Length limit for P.O. Number
722+
* <p>Type: String</p>
723+
* <p>See {@link #PARAM_VALUE_PATTERN} for details</p>
724+
*/
725+
public static final String PARAM_FLEET_PO_NUMBER_PATTERN = "fleetPONumberPattern";
726+
727+
/**
728+
* Length limit for Trip Number
729+
* <p>Type: String</p>
730+
* <p>See {@link #PARAM_VALUE_PATTERN} for details</p>
731+
*/
732+
public static final String PARAM_FLEET_TRIP_NUMBER_PATTERN = "fleetTripNumberPattern";
733+
734+
/**
735+
* Length limit for Unit Number
736+
* <p>Type: String</p>
737+
* <p>See {@link #PARAM_VALUE_PATTERN} for details</p>
738+
*/
739+
public static final String PARAM_FLEET_UNIT_NUMBER_PATTERN = "fleetUnitNumberPattern";
740+
741+
/**
742+
* Length limit for Trailer Number
743+
* <p>Type: String</p>
744+
* <p>See {@link #PARAM_VALUE_PATTERN} for details</p>
745+
*/
746+
public static final String PARAM_FLEET_TRAILER_NUMBER_PATTERN = "fleetTrailerNumberPattern";
747+
748+
/**
749+
* Length limit for Reefer Hours
750+
* <p>Type: String</p>
751+
* <p>See {@link #PARAM_VALUE_PATTERN} for details</p>
752+
*/
753+
public static final String PARAM_FLEET_REEFER_HOURS_PATTERN = "fleetReeferHoursPattern";
754+
755+
/**
756+
* Length limit for Maintenance ID
757+
* <p>Type: String</p>
758+
* <p>See {@link #PARAM_VALUE_PATTERN} for details</p>
759+
*/
760+
public static final String PARAM_FLEET_MAINTENANCE_ID_PATTERN = "fleetMaintenanceIdPattern";
761+
762+
/**
763+
* Length limit for Hubometer
764+
* <p>Type: String</p>
765+
* <p>See {@link #PARAM_VALUE_PATTERN} for details</p>
766+
*/
767+
public static final String PARAM_FLEET_HUBOMETER_PATTERN = "fleetHubometerPattern";
768+
720769
/**
721770
* Length limit for Zip Code
722771
* <p>Type: String</p>

lib-ui-constant/src/main/java/com/pax/us/pay/ui/constant/entry/EntryRequest.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,48 @@ private EntryRequest(){
530530
*/
531531
public static final String PARAM_FLEET_LICENSE_NUMBER = "fleetLicenseNumber";
532532

533+
/**
534+
* Fleet P.O. Number
535+
* <p>Type: String</p>
536+
*/
537+
public static final String PARAM_FLEET_PO_NUMBER = "fleetPONumber";
538+
539+
/**
540+
* Trip Number
541+
* <p>Type: String</p>
542+
*/
543+
public static final String PARAM_FLEET_TRIP_NUMBER = "fleetTripNumber";
544+
545+
/**
546+
* Unit Number
547+
* <p>Type: String</p>
548+
*/
549+
public static final String PARAM_FLEET_UNIT_NUMBER = "fleetUnitNumber";
550+
551+
/**
552+
* Trailer Number
553+
* <p>Type: String</p>
554+
*/
555+
public static final String PARAM_FLEET_TRAILER_NUMBER = "fleetTrailerNumber";
556+
557+
/**
558+
* Reefer Hours
559+
* <p>Type: String</p>
560+
*/
561+
public static final String PARAM_FLEET_REEFER_HOURS = "fleetReeferHours";
562+
563+
/**
564+
* Maintenance ID
565+
* <p>Type: String</p>
566+
*/
567+
public static final String PARAM_FLEET_MAINTENANCE_ID = "fleetMaintenanceID";
568+
569+
/**
570+
* Hubometer
571+
* <p>Type: String</p>
572+
*/
573+
public static final String PARAM_FLEET_HUBOMETER = "fleetHubometer";
574+
533575
/**
534576
* Destination zip code
535577
* <p>Type: String</p>

0 commit comments

Comments
 (0)