-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathEFTMessage.java
1643 lines (1288 loc) · 33.9 KB
/
EFTMessage.java
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
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* $Log: EFTMessage.java,v $
* Revision 1.10 2008/02/27 02:00:33 liaok
* 增加商户名称域
*
* Revision 1.9 2008/01/16 07:09:48 liaok
* 更新EFTmessage的注释,为文档做准备
*
* Revision 1.8 2007/12/11 06:28:16 wangl
* 修改uniquid为整型
*
* Revision 1.7 2007/12/06 07:29:34 wangl
* 加入交易类型判断
*
* Revision 1.6 2007/11/28 07:04:57 liaok
* 修正网络管理码的赋值问题
*
* Revision 1.5 2007/11/22 06:05:21 liaok
* 增加TPDU字段并实现对其的赋值
*
* Revision 1.4 2007/11/20 10:54:11 liaok
* 修改交易类型的getter为int型
*
* Revision 1.3 2007/11/16 06:31:31 liaok
* 将部分get/set的内容从字符串变为int,方面逻辑使用
*
* Revision 1.2 2007/11/13 06:45:29 wangl
* 同步代码
*
* Revision 1.4 2007/11/09 07:22:49 wangl
* 加入域注释
*
* Revision 1.3 2007/11/01 02:33:53 wangl
* 修改字段属性
*
* Revision 1.2 2007/10/26 07:39:44 wangl
* 修改为保护类型
*
* Revision 1.1.1.1 2007/10/09 02:17:40 ndscm
* 重新提交TPLATFORM的内容,将*.h、*.java、*.c、*.cpp以文本形式进行提交
*
* Revision 1.10 2007/09/29 07:28:51 wangl
* 修改錯誤代碼
*
* Revision 1.9 2007/09/28 03:27:01 wangl
* 添加结算部分
*
* Revision 1.8 2007/09/25 06:51:36 wangl
* 添加交易部分代码
*
* Revision 1.7 2007/09/24 07:06:58 zhaol
* 更改框架注册和处理方式,简化开发过程
*
* Revision 1.6 2007/09/20 03:23:11 wangl
* 修改错误
*
*
*/
/**
* @brief
* <p><b>金融消息接口 符合ISO8583定义的数据包</b></p>
*
* 金融消息接口 符合ISO8583定义的数据包
*
* @author wangl
* @version eJPos SDK1.0
* @see
* @since 2007-9-5
*/
public class EFTMessage {
/**
* 交易标识
*/
private int uniqueID;
/**
* @brief
* 消息类型
*
*/
public String msgTypeID;
/**
* 交易类型 FIELD_60_1
*/
public String transactionType;
/**
* 批次号 FIELD_60_2
*/
public String batchNumber;
/**
* 应答码 FIELD_39
*/
public String responseCode = "00";
/**
* 本地时间 12域
*/
public String localTransTime;
/**
* 本地日期 13域
*/
public String localTransDate;
/**
* 受卡方标识码 42域
*/
public String cardAcptIdenCode;
/**
* 受卡方名称地址 43域
*/
public String cardAcptAddress;
/**
* 受卡机终端标识码 FIELD_41
*/
public String serviceCode;
/**
* 受卡方系统跟踪号 11域
*/
public String traceNumber;
/**
* 主账号 2域
*/
public String priAccountNumber;
/**
* 交易处理码 3域
*/
public String process;
/**
* 交易金额 4域
*/
public String transactionAmount;
/**
* 卡有效期 14域
*/
public String cardValidate;
/**
* 服务点输入方式码 22域
*/
public String pointServiceInputMode;
/**
* 服务点条件码 25域
*/
public String pointServiceCode;
/**
* 服务点PIN获取码 26域
*/
public String pointServicePINCode;
/**
* 2磁道数据 35域
*/
public String track2Data;
/**
* 3磁道数据 36域
*/
public String track3Data;
/**
* 交易货币代码 49域
*/
public String currencyTransactionCode;
/**
* 个人标识码数据 52域
*/
public byte[] pinData;
/**
* 安全控制信息 53域
*/
public String securityControlInfo;
/**
* <code>mac</code> 64域
*/
public byte[] mac;
/**
* 原批号FIELD_61_1
*/
public String originalBatchNumber;
/**
* 原流水号FIELD_61_2
*/
public String originalTraceNumber;
/**
* 原交易日期FIELD_61_3
*/
public String originalTransactionDate;
/**
* 受理方标识码 32域
*/
public String acceptorSign;
/**
* 检索参考号 37域
*/
public String retrievalRefNum;
/**
* 终端密钥 62域
*/
public byte[] clientKey;
/**
* 参数信息 2域
*/
public byte[] parameterInfo;
/**
* 清算日期 15域
*/
public String settlementdate;
/**
* 授权标识应答码 38域
*/
public String authorizationIdentifyResCode;
/**
* 附加响应数据 44域
*/
public String extInfo;
/**
* 发卡行(定长8个字节) 63.2域
*/
public String publishBank;
/**
* 收单行号(定长8个字节) 63.4域
*/
public String receiveBank;
/**
* 国际组织代码(定长3个字节) 国际组织中文 国际组织英文 3位代码 人民币卡 China Union Pay CUP 威士卡 VISA VIS
* 万事达卡 Master Card MCC 万事达卡 Maestro Card MAE JCB卡 JCB JCB 大来卡 Dinner Club
* DCC 运通卡 American Express AEX 63.1域
*
*/
public String internationalOrganizationCode;
/**
* 银联信息 63.3域
*/
public String chinaUnionPayInfo;
/**
* 操作员代码 63.1域
*/
public String operatorCode;
/**
* 网络管理码 60.3域
*/
public String netManageCode;
/**
* 附加金额 54
*/
public String balanceAmount;
/**
* 60.3域 内卡借记总金额
*/
public String localCardLoanTotalAmount; //48
/**
* 60.3域 内卡借记总次数
*/
public String localCardLoanTotalCount;//48
/**
* 60.3域 内卡贷记总金额
*/
public String localCardCreditTotalAmount;//48
/**
* 60.3域 内卡贷记总次数
*/
public String localCardCreditTotalCount;//48
/**
* 60.3域 内卡状态
*/
public String localCardCheckAccountCode;//48
/**
* 60.3域 外卡借记总金额
*/
public String foreignCardLoanTotalAmount;//48
/**
* 60.3域 外卡借记总次数
*/
public String foreignCardLoanTotalCount;//48
/**
* 60.3域 外卡贷记总金额
*/
public String foreignCardCreditTotalAmount;//48
/**
* 60.3域 外卡贷记总次数
*/
public String foreignCardCreditTotalCount;//48
/**
* 60.3域 外卡状态
*/
public String foreignCardCheckAccountCode;//48
/**
* 原授权方式 61.4
*/
public String authorizationType;
/**
* 原授权机构 61.5
*/
public String authorizationOrganization;
/**
* 交易明细 48
*/
public String transactionDetial;
/**
* 数据包TPDU信息
*/
public String TPDU;
/**
* <code>商户名称</code>
*/
public String merchantName;
public byte[] serviceScript;
public String serviceResponse;
public byte[] serviceRequestCode;
public byte[] serviceRequestPara;
public byte[] serviceRequestSign;
public String reserved;
//-----------------------------------------------------------------------------------------------------------------------------------------//
//QCUP银联多渠道平台数据域
/**
* 域2 主账号
*/
public String qcup_PrimaryAccountNumber;
/**
* 域3 交易处理码
*/
public String qcup_ProcessingCode;
/**
* 域4 交易金额
*/
public String qcup_TransactionsAmount;
/**
* 域7 交易传输时间
*/
public String qcup_TransmissionDateAndTime;
/**
* 域11 系统跟踪号
*/
public String qcup_SystemTraceAuditNumber;
/**
* 域12 受卡方所在地时间
*/
public String qcup_LocalTransactionTime;
/**
* 域13 受卡方所在地日期
*/
public String qcup_LocalTransactionDate;
/**
* 域14 卡有效期
*/
public String qcup_ExpirationDate;
/**
* 域15 清算日期
*/
public String qcup_SettlementDate;
/**
* 域18 商户类型
*/
public String qcup_MerchantType;
/**
* 域22 服务点输入方式码
*/
public String qcup_PointOfServiceEntryModeCode;
/**
* 域23 卡序列号
*/
public String qcup_CardSequenceNumber;
/**
* 域25 服务点条件码
*/
public String qcup_PointOfServiceConditionMode;
/**
* 域26服务点PIN 获取码
*/
public String qcup_PointofServicePinCaptureCode;
/**
* 域32 受理机构标识码
*/
public String qcup_AcquiringInstitutionIdentificationCode;
/**
* 域33 发送机构标识码
*/
public String qcup_ForwardingInstitutionIdentificationCode;
/**
* 域35第二磁道数据
*/
public String qcup_Track2Data;
/**
* 域36第三磁道数据
*/
public String qcup_Track3Data;
/**
* 域37 检索参考号
*/
public String qcup_RetrievalReferenceNumber;
/**
* 域38 授权标识应答码
*/
public String qcup_AuthorizationIdentificationResponse;
/**
* 域39 应答码
*/
public String qcup_ResponseCode;
/**
* 域41 受卡机终端标识码
*/
public String qcup_CardAcceptorTerminalIdentification;
/**
* 域42 受卡方标识码
*/
public String qcup_CardAcceptorIdentificationCode;
/**
* 域43 受卡方名称地址
*/
public String qcup_CardAcceptorNameLocation;
/**
* 域48 自定义域
*/
public String qcup_AdditionalDataPrivate;
/**
* 域49交易货币代码
*/
public String qcup_CurrencyCodeTransaction;
/**
* 域52 个人标识码数据
*/
public byte[] qcup_pinData;
/**
* 域53 安全控制信息
*/
public String qcup_SecurityRelatedControlInformation;
/**
* 域54 实际余额
*/
public String qcup_AdditionalAmounts;
/**
* 域55基于PBOC借贷记标准的IC卡数据域
*/
public byte[] qcup_IntegratedCircuitCardSystemRelatedData;
/**
* 域59 明细查询数据
*/
public String qcup_DetailInquiring;
/**
* 域60 自定义域
*/
public String qcup_AdditionalPointOfServiceInformation;
/**
* 域61 持卡人身份认证信息
*/
public String qcup_AuthenticationInformation;
/**
* 域63 自定义域
*/
public byte[] qcup_ReservedPrivate;
/**
* 域70 网络管理码
*/
public String qcup_Networkmanagementcode;
/**
* 域90 原始数据元
*/
public String qcup_OriginalDataElements;
/**
* 域96 报文安全码
*/
public byte[] qcup_MessageSecurityCode;
/**
* 域100 接收机构标识码
*/
public String qcup_DestinationInstituitionIdentificationCode;
/**
* 域102 账户标识1
*/
public String qcup_AccountIdentification1;
/**
* 域103 账户标识2
*/
public String qcup_AccountIdentification2;
/**
* 域128 报文鉴别码
*/
public byte[] qcup_Mac;
public String getQCUP_PrimaryAccountNumber() {
return qcup_PrimaryAccountNumber;
}
public void setQCUP_PrimaryAccountNumber(String qCUP_PrimaryAccountNumber) {
qcup_PrimaryAccountNumber = qCUP_PrimaryAccountNumber;
}
public String getQCUP_ProcessingCode() {
return qcup_ProcessingCode;
}
public void setQCUP_ProcessingCode(String qCUP_ProcessingCode) {
qcup_ProcessingCode = qCUP_ProcessingCode;
}
public String getQCUP_TransactionsAmount() {
return qcup_TransactionsAmount;
}
public void setQCUP_TransactionsAmount(String qCUP_TransactionsAmount) {
qcup_TransactionsAmount = qCUP_TransactionsAmount;
}
public String getQCUP_TransmissionDateAndTime() {
return qcup_TransmissionDateAndTime;
}
public void setQCUP_TransmissionDateAndTime(String qCUP_TransmissionDateAndTime) {
qcup_TransmissionDateAndTime = qCUP_TransmissionDateAndTime;
}
public String getQCUP_SystemTraceAuditNumber() {
return qcup_SystemTraceAuditNumber;
}
public void setQCUP_SystemTraceAuditNumber(String qCUP_SystemTraceAuditNumber) {
qcup_SystemTraceAuditNumber = qCUP_SystemTraceAuditNumber;
}
public String getQCUP_LocalTransactionTime() {
return qcup_LocalTransactionTime;
}
public void setQCUP_LocalTransactionTime(String qCUP_LocalTransactionTime) {
qcup_LocalTransactionTime = qCUP_LocalTransactionTime;
}
public String getQCUP_LocalTransactionDate() {
return qcup_LocalTransactionDate;
}
public void setQCUP_LocalTransactionDate(String qCUP_LocalTransactionDate) {
qcup_LocalTransactionDate = qCUP_LocalTransactionDate;
}
public String getQCUP_ExpirationDate() {
return qcup_ExpirationDate;
}
public void setQCUP_ExpirationDate(String qCUP_ExpirationDate) {
qcup_ExpirationDate = qCUP_ExpirationDate;
}
public String getQCUP_SettlementDate() {
return qcup_SettlementDate;
}
public void setQCUP_SettlementDate(String qCUP_SettlementDate) {
qcup_SettlementDate = qCUP_SettlementDate;
}
public String getQCUP_MerchantType() {
return qcup_MerchantType;
}
public void setQCUP_MerchantType(String qCUP_MerchantType) {
qcup_MerchantType = qCUP_MerchantType;
}
public String getQCUP_PointOfServiceEntryModeCode() {
return qcup_PointOfServiceEntryModeCode;
}
public void setQCUP_PointOfServiceEntryModeCode(
String qCUP_PointOfServiceEntryModeCode) {
qcup_PointOfServiceEntryModeCode = qCUP_PointOfServiceEntryModeCode;
}
public String getQCUP_CardSequenceNumber() {
return qcup_CardSequenceNumber;
}
public void setQCUP_CardSequenceNumber(String qCUP_CardSequenceNumber) {
qcup_CardSequenceNumber = qCUP_CardSequenceNumber;
}
public String getQCUP_PointOfServiceConditionMode() {
return qcup_PointOfServiceConditionMode;
}
public void setQCUP_PointOfServiceConditionMode(
String qCUP_PointOfServiceConditionMode) {
qcup_PointOfServiceConditionMode = qCUP_PointOfServiceConditionMode;
}
public String getQCUP_PointofServicePinCaptureCode() {
return qcup_PointofServicePinCaptureCode;
}
public void setQCUP_PointofServicePinCaptureCode(
String qCUP_PointofServicePinCaptureCode) {
qcup_PointofServicePinCaptureCode = qCUP_PointofServicePinCaptureCode;
}
public String getQCUP_AcquiringInstitutionIdentificationCode() {
return qcup_AcquiringInstitutionIdentificationCode;
}
public void setQCUP_AcquiringInstitutionIdentificationCode(
String qCUP_AcquiringInstitutionIdentificationCode) {
qcup_AcquiringInstitutionIdentificationCode = qCUP_AcquiringInstitutionIdentificationCode;
}
public String getQCUP_ForwardingInstitutionIdentificationCode() {
return qcup_ForwardingInstitutionIdentificationCode;
}
public void setQCUP_ForwardingInstitutionIdentificationCode(
String qCUP_ForwardingInstitutionIdentificationCode) {
qcup_ForwardingInstitutionIdentificationCode = qCUP_ForwardingInstitutionIdentificationCode;
}
public String getQCUP_Track2Data() {
return qcup_Track2Data;
}
public void setQCUP_Track2Data(String qCUP_Track2Data) {
qcup_Track2Data = qCUP_Track2Data;
}
public String getQCUP_Track3Data() {
return qcup_Track3Data;
}
public void setQCUP_Track3Data(String qCUP_Track3Data) {
qcup_Track3Data = qCUP_Track3Data;
}
public String getQCUP_RetrievalReferenceNumber() {
return qcup_RetrievalReferenceNumber;
}
public void setQCUP_RetrievalReferenceNumber(
String qCUP_RetrievalReferenceNumber) {
qcup_RetrievalReferenceNumber = qCUP_RetrievalReferenceNumber;
}
public String getQCUP_AuthorizationIdentificationResponse() {
return qcup_AuthorizationIdentificationResponse;
}
public void setQCUP_AuthorizationIdentificationResponse(
String qCUP_AuthorizationIdentificationResponse) {
qcup_AuthorizationIdentificationResponse = qCUP_AuthorizationIdentificationResponse;
}
public String getQCUP_ResponseCode() {
return qcup_ResponseCode;
}
public void setQCUP_ResponseCode(String qCUP_ResponseCode) {
qcup_ResponseCode = qCUP_ResponseCode;
}
public String getQCUP_CardAcceptorTerminalIdentification() {
return qcup_CardAcceptorTerminalIdentification;
}
public void setQCUP_CardAcceptorTerminalIdentification(
String qCUP_CardAcceptorTerminalIdentification) {
qcup_CardAcceptorTerminalIdentification = qCUP_CardAcceptorTerminalIdentification;
}
public String getQCUP_CardAcceptorIdentificationCode() {
return qcup_CardAcceptorIdentificationCode;
}
public void setQCUP_CardAcceptorIdentificationCode(
String qCUP_CardAcceptorIdentificationCode) {
qcup_CardAcceptorIdentificationCode = qCUP_CardAcceptorIdentificationCode;
}
public String getQCUP_CardAcceptorNameLocation() {
return qcup_CardAcceptorNameLocation;
}
public void setQCUP_CardAcceptorNameLocation(
String qCUP_CardAcceptorNameLocation) {
qcup_CardAcceptorNameLocation = qCUP_CardAcceptorNameLocation;
}
public String getQCUP_AdditionalDataPrivate() {
return qcup_AdditionalDataPrivate;
}
public void setQCUP_AdditionalDataPrivate(String qCUP_AdditionalDataPrivate) {
qcup_AdditionalDataPrivate = qCUP_AdditionalDataPrivate;
}
public String getQCUP_CurrencyCodeTransaction() {
return qcup_CurrencyCodeTransaction;
}
public void setQCUP_CurrencyCodeTransaction(String qCUP_CurrencyCodeTransaction) {
qcup_CurrencyCodeTransaction = qCUP_CurrencyCodeTransaction;
}
public byte[] getQCUP_pinData() {
return qcup_pinData;
}
public void setQCUP_pinData(byte[] qCUP_pinData) {
qcup_pinData = qCUP_pinData;
}
public String getQCUP_SecurityRelatedControlInformation() {
return qcup_SecurityRelatedControlInformation;
}
public void setQCUP_SecurityRelatedControlInformation(
String qCUP_SecurityRelatedControlInformation) {
qcup_SecurityRelatedControlInformation = qCUP_SecurityRelatedControlInformation;
}
public String getQCUP_AdditionalAmounts() {
return qcup_AdditionalAmounts;
}
public void setQCUP_AdditionalAmounts(String qCUP_AdditionalAmounts) {
qcup_AdditionalAmounts = qCUP_AdditionalAmounts;
}
public byte[] getQCUP_IntegratedCircuitCardSystemRelatedData() {
return qcup_IntegratedCircuitCardSystemRelatedData;
}
public void setQCUP_IntegratedCircuitCardSystemRelatedData(
byte[] qCUP_IntegratedCircuitCardSystemRelatedData) {
qcup_IntegratedCircuitCardSystemRelatedData = qCUP_IntegratedCircuitCardSystemRelatedData;
}
public String getQCUP_DetailInquiring() {
return qcup_DetailInquiring;
}
public void setQCUP_DetailInquiring(String qCUP_DetailInquiring) {
qcup_DetailInquiring = qCUP_DetailInquiring;
}
public String getQCUP_AdditionalPointOfServiceInformation() {
return qcup_AdditionalPointOfServiceInformation;
}
public void setQCUP_AdditionalPointOfServiceInformation(
String qCUP_AdditionalPointOfServiceInformation) {
qcup_AdditionalPointOfServiceInformation = qCUP_AdditionalPointOfServiceInformation;
}
public String getQCUP_AuthenticationInformation() {
return qcup_AuthenticationInformation;
}
public void setQCUP_AuthenticationInformation(
String qCUP_AuthenticationInformation) {
qcup_AuthenticationInformation = qCUP_AuthenticationInformation;
}
public byte[] getQCUP_ReservedPrivate() {
return qcup_ReservedPrivate;
}
public void setQCUP_ReservedPrivate(byte[] qCUP_ReservedPrivate) {
qcup_ReservedPrivate = qCUP_ReservedPrivate;
}
public String getQCUP_Networkmanagementcode() {
return qcup_Networkmanagementcode;
}
public void setQCUP_Networkmanagementcode(String qCUP_Networkmanagementcode) {
qcup_Networkmanagementcode = qCUP_Networkmanagementcode;
}
public String getQCUP_OriginalDataElements() {
return qcup_OriginalDataElements;
}
public void setQCUP_OriginalDataElements(String qCUP_OriginalDataElements) {
qcup_OriginalDataElements = qCUP_OriginalDataElements;
}
public byte[] getQCUP_MessageSecurityCode() {
return qcup_MessageSecurityCode;
}
public void setQCUP_MessageSecurityCode(byte[] qCUP_MessageSecurityCode) {
qcup_MessageSecurityCode = qCUP_MessageSecurityCode;
}
public String getQCUP_DestinationInstituitionIdentificationCode() {
return qcup_DestinationInstituitionIdentificationCode;
}
public void setQCUP_DestinationInstituitionIdentificationCode(
String qCUP_DestinationInstituitionIdentificationCode) {
qcup_DestinationInstituitionIdentificationCode = qCUP_DestinationInstituitionIdentificationCode;
}
public String getQCUP_AccountIdentification1() {
return qcup_AccountIdentification1;
}
public void setQCUP_AccountIdentification1(String qCUP_AccountIdentification1) {
qcup_AccountIdentification1 = qCUP_AccountIdentification1;
}
public String getQCUP_AccountIdentification2() {
return qcup_AccountIdentification2;
}
public void setQCUP_AccountIdentification2(String qCUP_AccountIdentification2) {
qcup_AccountIdentification2 = qCUP_AccountIdentification2;
}
public byte[] getQCUP_Mac() {
return qcup_Mac;
}
public void setQCUP_Mac(byte[] qCUP_Mac) {
qcup_Mac = qCUP_Mac;
}
public String getReserved() {
return reserved;
}
public void setReserved(String reserved) {
this.reserved = reserved;
}
public String getServiceResponse() {
return serviceResponse;
}
public void setServiceResponse(String serviceResponse) {
this.serviceResponse = serviceResponse;
}
public byte[] getServiceRequestCode() {
return serviceRequestCode;
}
public void setServiceRequestCode(byte[] serviceRequestCode) {
this.serviceRequestCode = serviceRequestCode;
}
public byte[] getServiceRequestPara() {
return serviceRequestPara;
}
public void setServiceRequestPara(byte[] serviceRequestPara) {
this.serviceRequestPara = serviceRequestPara;
}
public byte[] getServiceRequestSign() {
return serviceRequestSign;
}
public void setServiceRequestSign(byte[] serviceRequestSign) {
this.serviceRequestSign = serviceRequestSign;
}
public byte[] getServiceScript() {
return serviceScript;
}
public void setServiceScript(byte[] serviceScript) {
this.serviceScript = serviceScript;
}
public String getTPDU() {
return TPDU;
}
public void setTPDU(String tpdu) {
TPDU = tpdu;
}
public String getBalanceAmount() {
return balanceAmount;
}
public void setBalanceAmount(String balanceAmount) {
this.balanceAmount = balanceAmount;
}
public String getNetManageCode() {
return netManageCode;
}
public void setNetManageCode(String netManageCode) {
this.netManageCode = netManageCode;
}
public String getOperatorCode() {
return operatorCode;
}