zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
/**
 * Subscriber.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4.1-SNAPSHOT Nov 07, 2023 (07:57:58 UTC) WSDL2Java emitter.
 */
 
package com.gear.common.utils.emailsq.service;
 
public class Subscriber  implements java.io.Serializable {
    private java.lang.String email;
 
    private java.lang.String firstName;
 
    private java.lang.String middleName;
 
    private java.lang.String lastName;
 
    private java.lang.String jobTitle;
 
    private java.lang.String company;
 
    private java.lang.String homePhone;
 
    private java.lang.String address1;
 
    private java.lang.String address2;
 
    private java.lang.String address3;
 
    private java.lang.String city;
 
    private java.lang.String state;
 
    private java.lang.String country;
 
    private java.lang.String postalCode;
 
    private java.lang.String subPostalCode;
 
    private java.lang.String fax;
 
    private java.lang.String webUrl;
 
    private java.lang.String title;
 
    private java.lang.String gender;
 
    private java.util.Calendar date1;
 
    private java.util.Calendar date2;
 
    private java.lang.String customField1;
 
    private java.lang.String customField2;
 
    private java.lang.String customField3;
 
    private java.lang.String customField4;
 
    private java.lang.String customField5;
 
    private java.lang.String customField6;
 
    private java.lang.String customField7;
 
    private java.lang.String customField8;
 
    private java.lang.String customField9;
 
    private java.lang.String customField10;
 
    private java.lang.String customField11;
 
    private java.lang.String customField12;
 
    private java.lang.String customField13;
 
    private java.lang.String customField14;
 
    private java.lang.String customField15;
 
    public Subscriber() {
    }
 
    public Subscriber(
           java.lang.String email,
           java.lang.String firstName,
           java.lang.String middleName,
           java.lang.String lastName,
           java.lang.String jobTitle,
           java.lang.String company,
           java.lang.String homePhone,
           java.lang.String address1,
           java.lang.String address2,
           java.lang.String address3,
           java.lang.String city,
           java.lang.String state,
           java.lang.String country,
           java.lang.String postalCode,
           java.lang.String subPostalCode,
           java.lang.String fax,
           java.lang.String webUrl,
           java.lang.String title,
           java.lang.String gender,
           java.util.Calendar date1,
           java.util.Calendar date2,
           java.lang.String customField1,
           java.lang.String customField2,
           java.lang.String customField3,
           java.lang.String customField4,
           java.lang.String customField5,
           java.lang.String customField6,
           java.lang.String customField7,
           java.lang.String customField8,
           java.lang.String customField9,
           java.lang.String customField10,
           java.lang.String customField11,
           java.lang.String customField12,
           java.lang.String customField13,
           java.lang.String customField14,
           java.lang.String customField15) {
           this.email = email;
           this.firstName = firstName;
           this.middleName = middleName;
           this.lastName = lastName;
           this.jobTitle = jobTitle;
           this.company = company;
           this.homePhone = homePhone;
           this.address1 = address1;
           this.address2 = address2;
           this.address3 = address3;
           this.city = city;
           this.state = state;
           this.country = country;
           this.postalCode = postalCode;
           this.subPostalCode = subPostalCode;
           this.fax = fax;
           this.webUrl = webUrl;
           this.title = title;
           this.gender = gender;
           this.date1 = date1;
           this.date2 = date2;
           this.customField1 = customField1;
           this.customField2 = customField2;
           this.customField3 = customField3;
           this.customField4 = customField4;
           this.customField5 = customField5;
           this.customField6 = customField6;
           this.customField7 = customField7;
           this.customField8 = customField8;
           this.customField9 = customField9;
           this.customField10 = customField10;
           this.customField11 = customField11;
           this.customField12 = customField12;
           this.customField13 = customField13;
           this.customField14 = customField14;
           this.customField15 = customField15;
    }
 
 
    /**
     * Gets the email value for this Subscriber.
     * 
     * @return email
     */
    public java.lang.String getEmail() {
        return email;
    }
 
 
    /**
     * Sets the email value for this Subscriber.
     * 
     * @param email
     */
    public void setEmail(java.lang.String email) {
        this.email = email;
    }
 
 
    /**
     * Gets the firstName value for this Subscriber.
     * 
     * @return firstName
     */
    public java.lang.String getFirstName() {
        return firstName;
    }
 
 
    /**
     * Sets the firstName value for this Subscriber.
     * 
     * @param firstName
     */
    public void setFirstName(java.lang.String firstName) {
        this.firstName = firstName;
    }
 
 
    /**
     * Gets the middleName value for this Subscriber.
     * 
     * @return middleName
     */
    public java.lang.String getMiddleName() {
        return middleName;
    }
 
 
    /**
     * Sets the middleName value for this Subscriber.
     * 
     * @param middleName
     */
    public void setMiddleName(java.lang.String middleName) {
        this.middleName = middleName;
    }
 
 
    /**
     * Gets the lastName value for this Subscriber.
     * 
     * @return lastName
     */
    public java.lang.String getLastName() {
        return lastName;
    }
 
 
    /**
     * Sets the lastName value for this Subscriber.
     * 
     * @param lastName
     */
    public void setLastName(java.lang.String lastName) {
        this.lastName = lastName;
    }
 
 
    /**
     * Gets the jobTitle value for this Subscriber.
     * 
     * @return jobTitle
     */
    public java.lang.String getJobTitle() {
        return jobTitle;
    }
 
 
    /**
     * Sets the jobTitle value for this Subscriber.
     * 
     * @param jobTitle
     */
    public void setJobTitle(java.lang.String jobTitle) {
        this.jobTitle = jobTitle;
    }
 
 
    /**
     * Gets the company value for this Subscriber.
     * 
     * @return company
     */
    public java.lang.String getCompany() {
        return company;
    }
 
 
    /**
     * Sets the company value for this Subscriber.
     * 
     * @param company
     */
    public void setCompany(java.lang.String company) {
        this.company = company;
    }
 
 
    /**
     * Gets the homePhone value for this Subscriber.
     * 
     * @return homePhone
     */
    public java.lang.String getHomePhone() {
        return homePhone;
    }
 
 
    /**
     * Sets the homePhone value for this Subscriber.
     * 
     * @param homePhone
     */
    public void setHomePhone(java.lang.String homePhone) {
        this.homePhone = homePhone;
    }
 
 
    /**
     * Gets the address1 value for this Subscriber.
     * 
     * @return address1
     */
    public java.lang.String getAddress1() {
        return address1;
    }
 
 
    /**
     * Sets the address1 value for this Subscriber.
     * 
     * @param address1
     */
    public void setAddress1(java.lang.String address1) {
        this.address1 = address1;
    }
 
 
    /**
     * Gets the address2 value for this Subscriber.
     * 
     * @return address2
     */
    public java.lang.String getAddress2() {
        return address2;
    }
 
 
    /**
     * Sets the address2 value for this Subscriber.
     * 
     * @param address2
     */
    public void setAddress2(java.lang.String address2) {
        this.address2 = address2;
    }
 
 
    /**
     * Gets the address3 value for this Subscriber.
     * 
     * @return address3
     */
    public java.lang.String getAddress3() {
        return address3;
    }
 
 
    /**
     * Sets the address3 value for this Subscriber.
     * 
     * @param address3
     */
    public void setAddress3(java.lang.String address3) {
        this.address3 = address3;
    }
 
 
    /**
     * Gets the city value for this Subscriber.
     * 
     * @return city
     */
    public java.lang.String getCity() {
        return city;
    }
 
 
    /**
     * Sets the city value for this Subscriber.
     * 
     * @param city
     */
    public void setCity(java.lang.String city) {
        this.city = city;
    }
 
 
    /**
     * Gets the state value for this Subscriber.
     * 
     * @return state
     */
    public java.lang.String getState() {
        return state;
    }
 
 
    /**
     * Sets the state value for this Subscriber.
     * 
     * @param state
     */
    public void setState(java.lang.String state) {
        this.state = state;
    }
 
 
    /**
     * Gets the country value for this Subscriber.
     * 
     * @return country
     */
    public java.lang.String getCountry() {
        return country;
    }
 
 
    /**
     * Sets the country value for this Subscriber.
     * 
     * @param country
     */
    public void setCountry(java.lang.String country) {
        this.country = country;
    }
 
 
    /**
     * Gets the postalCode value for this Subscriber.
     * 
     * @return postalCode
     */
    public java.lang.String getPostalCode() {
        return postalCode;
    }
 
 
    /**
     * Sets the postalCode value for this Subscriber.
     * 
     * @param postalCode
     */
    public void setPostalCode(java.lang.String postalCode) {
        this.postalCode = postalCode;
    }
 
 
    /**
     * Gets the subPostalCode value for this Subscriber.
     * 
     * @return subPostalCode
     */
    public java.lang.String getSubPostalCode() {
        return subPostalCode;
    }
 
 
    /**
     * Sets the subPostalCode value for this Subscriber.
     * 
     * @param subPostalCode
     */
    public void setSubPostalCode(java.lang.String subPostalCode) {
        this.subPostalCode = subPostalCode;
    }
 
 
    /**
     * Gets the fax value for this Subscriber.
     * 
     * @return fax
     */
    public java.lang.String getFax() {
        return fax;
    }
 
 
    /**
     * Sets the fax value for this Subscriber.
     * 
     * @param fax
     */
    public void setFax(java.lang.String fax) {
        this.fax = fax;
    }
 
 
    /**
     * Gets the webUrl value for this Subscriber.
     * 
     * @return webUrl
     */
    public java.lang.String getWebUrl() {
        return webUrl;
    }
 
 
    /**
     * Sets the webUrl value for this Subscriber.
     * 
     * @param webUrl
     */
    public void setWebUrl(java.lang.String webUrl) {
        this.webUrl = webUrl;
    }
 
 
    /**
     * Gets the title value for this Subscriber.
     * 
     * @return title
     */
    public java.lang.String getTitle() {
        return title;
    }
 
 
    /**
     * Sets the title value for this Subscriber.
     * 
     * @param title
     */
    public void setTitle(java.lang.String title) {
        this.title = title;
    }
 
 
    /**
     * Gets the gender value for this Subscriber.
     * 
     * @return gender
     */
    public java.lang.String getGender() {
        return gender;
    }
 
 
    /**
     * Sets the gender value for this Subscriber.
     * 
     * @param gender
     */
    public void setGender(java.lang.String gender) {
        this.gender = gender;
    }
 
 
    /**
     * Gets the date1 value for this Subscriber.
     * 
     * @return date1
     */
    public java.util.Calendar getDate1() {
        return date1;
    }
 
 
    /**
     * Sets the date1 value for this Subscriber.
     * 
     * @param date1
     */
    public void setDate1(java.util.Calendar date1) {
        this.date1 = date1;
    }
 
 
    /**
     * Gets the date2 value for this Subscriber.
     * 
     * @return date2
     */
    public java.util.Calendar getDate2() {
        return date2;
    }
 
 
    /**
     * Sets the date2 value for this Subscriber.
     * 
     * @param date2
     */
    public void setDate2(java.util.Calendar date2) {
        this.date2 = date2;
    }
 
 
    /**
     * Gets the customField1 value for this Subscriber.
     * 
     * @return customField1
     */
    public java.lang.String getCustomField1() {
        return customField1;
    }
 
 
    /**
     * Sets the customField1 value for this Subscriber.
     * 
     * @param customField1
     */
    public void setCustomField1(java.lang.String customField1) {
        this.customField1 = customField1;
    }
 
 
    /**
     * Gets the customField2 value for this Subscriber.
     * 
     * @return customField2
     */
    public java.lang.String getCustomField2() {
        return customField2;
    }
 
 
    /**
     * Sets the customField2 value for this Subscriber.
     * 
     * @param customField2
     */
    public void setCustomField2(java.lang.String customField2) {
        this.customField2 = customField2;
    }
 
 
    /**
     * Gets the customField3 value for this Subscriber.
     * 
     * @return customField3
     */
    public java.lang.String getCustomField3() {
        return customField3;
    }
 
 
    /**
     * Sets the customField3 value for this Subscriber.
     * 
     * @param customField3
     */
    public void setCustomField3(java.lang.String customField3) {
        this.customField3 = customField3;
    }
 
 
    /**
     * Gets the customField4 value for this Subscriber.
     * 
     * @return customField4
     */
    public java.lang.String getCustomField4() {
        return customField4;
    }
 
 
    /**
     * Sets the customField4 value for this Subscriber.
     * 
     * @param customField4
     */
    public void setCustomField4(java.lang.String customField4) {
        this.customField4 = customField4;
    }
 
 
    /**
     * Gets the customField5 value for this Subscriber.
     * 
     * @return customField5
     */
    public java.lang.String getCustomField5() {
        return customField5;
    }
 
 
    /**
     * Sets the customField5 value for this Subscriber.
     * 
     * @param customField5
     */
    public void setCustomField5(java.lang.String customField5) {
        this.customField5 = customField5;
    }
 
 
    /**
     * Gets the customField6 value for this Subscriber.
     * 
     * @return customField6
     */
    public java.lang.String getCustomField6() {
        return customField6;
    }
 
 
    /**
     * Sets the customField6 value for this Subscriber.
     * 
     * @param customField6
     */
    public void setCustomField6(java.lang.String customField6) {
        this.customField6 = customField6;
    }
 
 
    /**
     * Gets the customField7 value for this Subscriber.
     * 
     * @return customField7
     */
    public java.lang.String getCustomField7() {
        return customField7;
    }
 
 
    /**
     * Sets the customField7 value for this Subscriber.
     * 
     * @param customField7
     */
    public void setCustomField7(java.lang.String customField7) {
        this.customField7 = customField7;
    }
 
 
    /**
     * Gets the customField8 value for this Subscriber.
     * 
     * @return customField8
     */
    public java.lang.String getCustomField8() {
        return customField8;
    }
 
 
    /**
     * Sets the customField8 value for this Subscriber.
     * 
     * @param customField8
     */
    public void setCustomField8(java.lang.String customField8) {
        this.customField8 = customField8;
    }
 
 
    /**
     * Gets the customField9 value for this Subscriber.
     * 
     * @return customField9
     */
    public java.lang.String getCustomField9() {
        return customField9;
    }
 
 
    /**
     * Sets the customField9 value for this Subscriber.
     * 
     * @param customField9
     */
    public void setCustomField9(java.lang.String customField9) {
        this.customField9 = customField9;
    }
 
 
    /**
     * Gets the customField10 value for this Subscriber.
     * 
     * @return customField10
     */
    public java.lang.String getCustomField10() {
        return customField10;
    }
 
 
    /**
     * Sets the customField10 value for this Subscriber.
     * 
     * @param customField10
     */
    public void setCustomField10(java.lang.String customField10) {
        this.customField10 = customField10;
    }
 
 
    /**
     * Gets the customField11 value for this Subscriber.
     * 
     * @return customField11
     */
    public java.lang.String getCustomField11() {
        return customField11;
    }
 
 
    /**
     * Sets the customField11 value for this Subscriber.
     * 
     * @param customField11
     */
    public void setCustomField11(java.lang.String customField11) {
        this.customField11 = customField11;
    }
 
 
    /**
     * Gets the customField12 value for this Subscriber.
     * 
     * @return customField12
     */
    public java.lang.String getCustomField12() {
        return customField12;
    }
 
 
    /**
     * Sets the customField12 value for this Subscriber.
     * 
     * @param customField12
     */
    public void setCustomField12(java.lang.String customField12) {
        this.customField12 = customField12;
    }
 
 
    /**
     * Gets the customField13 value for this Subscriber.
     * 
     * @return customField13
     */
    public java.lang.String getCustomField13() {
        return customField13;
    }
 
 
    /**
     * Sets the customField13 value for this Subscriber.
     * 
     * @param customField13
     */
    public void setCustomField13(java.lang.String customField13) {
        this.customField13 = customField13;
    }
 
 
    /**
     * Gets the customField14 value for this Subscriber.
     * 
     * @return customField14
     */
    public java.lang.String getCustomField14() {
        return customField14;
    }
 
 
    /**
     * Sets the customField14 value for this Subscriber.
     * 
     * @param customField14
     */
    public void setCustomField14(java.lang.String customField14) {
        this.customField14 = customField14;
    }
 
 
    /**
     * Gets the customField15 value for this Subscriber.
     * 
     * @return customField15
     */
    public java.lang.String getCustomField15() {
        return customField15;
    }
 
 
    /**
     * Sets the customField15 value for this Subscriber.
     * 
     * @param customField15
     */
    public void setCustomField15(java.lang.String customField15) {
        this.customField15 = customField15;
    }
 
    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof Subscriber)) return false;
        Subscriber other = (Subscriber) obj;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.email==null && other.getEmail()==null) || 
             (this.email!=null &&
              this.email.equals(other.getEmail()))) &&
            ((this.firstName==null && other.getFirstName()==null) || 
             (this.firstName!=null &&
              this.firstName.equals(other.getFirstName()))) &&
            ((this.middleName==null && other.getMiddleName()==null) || 
             (this.middleName!=null &&
              this.middleName.equals(other.getMiddleName()))) &&
            ((this.lastName==null && other.getLastName()==null) || 
             (this.lastName!=null &&
              this.lastName.equals(other.getLastName()))) &&
            ((this.jobTitle==null && other.getJobTitle()==null) || 
             (this.jobTitle!=null &&
              this.jobTitle.equals(other.getJobTitle()))) &&
            ((this.company==null && other.getCompany()==null) || 
             (this.company!=null &&
              this.company.equals(other.getCompany()))) &&
            ((this.homePhone==null && other.getHomePhone()==null) || 
             (this.homePhone!=null &&
              this.homePhone.equals(other.getHomePhone()))) &&
            ((this.address1==null && other.getAddress1()==null) || 
             (this.address1!=null &&
              this.address1.equals(other.getAddress1()))) &&
            ((this.address2==null && other.getAddress2()==null) || 
             (this.address2!=null &&
              this.address2.equals(other.getAddress2()))) &&
            ((this.address3==null && other.getAddress3()==null) || 
             (this.address3!=null &&
              this.address3.equals(other.getAddress3()))) &&
            ((this.city==null && other.getCity()==null) || 
             (this.city!=null &&
              this.city.equals(other.getCity()))) &&
            ((this.state==null && other.getState()==null) || 
             (this.state!=null &&
              this.state.equals(other.getState()))) &&
            ((this.country==null && other.getCountry()==null) || 
             (this.country!=null &&
              this.country.equals(other.getCountry()))) &&
            ((this.postalCode==null && other.getPostalCode()==null) || 
             (this.postalCode!=null &&
              this.postalCode.equals(other.getPostalCode()))) &&
            ((this.subPostalCode==null && other.getSubPostalCode()==null) || 
             (this.subPostalCode!=null &&
              this.subPostalCode.equals(other.getSubPostalCode()))) &&
            ((this.fax==null && other.getFax()==null) || 
             (this.fax!=null &&
              this.fax.equals(other.getFax()))) &&
            ((this.webUrl==null && other.getWebUrl()==null) || 
             (this.webUrl!=null &&
              this.webUrl.equals(other.getWebUrl()))) &&
            ((this.title==null && other.getTitle()==null) || 
             (this.title!=null &&
              this.title.equals(other.getTitle()))) &&
            ((this.gender==null && other.getGender()==null) || 
             (this.gender!=null &&
              this.gender.equals(other.getGender()))) &&
            ((this.date1==null && other.getDate1()==null) || 
             (this.date1!=null &&
              this.date1.equals(other.getDate1()))) &&
            ((this.date2==null && other.getDate2()==null) || 
             (this.date2!=null &&
              this.date2.equals(other.getDate2()))) &&
            ((this.customField1==null && other.getCustomField1()==null) || 
             (this.customField1!=null &&
              this.customField1.equals(other.getCustomField1()))) &&
            ((this.customField2==null && other.getCustomField2()==null) || 
             (this.customField2!=null &&
              this.customField2.equals(other.getCustomField2()))) &&
            ((this.customField3==null && other.getCustomField3()==null) || 
             (this.customField3!=null &&
              this.customField3.equals(other.getCustomField3()))) &&
            ((this.customField4==null && other.getCustomField4()==null) || 
             (this.customField4!=null &&
              this.customField4.equals(other.getCustomField4()))) &&
            ((this.customField5==null && other.getCustomField5()==null) || 
             (this.customField5!=null &&
              this.customField5.equals(other.getCustomField5()))) &&
            ((this.customField6==null && other.getCustomField6()==null) || 
             (this.customField6!=null &&
              this.customField6.equals(other.getCustomField6()))) &&
            ((this.customField7==null && other.getCustomField7()==null) || 
             (this.customField7!=null &&
              this.customField7.equals(other.getCustomField7()))) &&
            ((this.customField8==null && other.getCustomField8()==null) || 
             (this.customField8!=null &&
              this.customField8.equals(other.getCustomField8()))) &&
            ((this.customField9==null && other.getCustomField9()==null) || 
             (this.customField9!=null &&
              this.customField9.equals(other.getCustomField9()))) &&
            ((this.customField10==null && other.getCustomField10()==null) || 
             (this.customField10!=null &&
              this.customField10.equals(other.getCustomField10()))) &&
            ((this.customField11==null && other.getCustomField11()==null) || 
             (this.customField11!=null &&
              this.customField11.equals(other.getCustomField11()))) &&
            ((this.customField12==null && other.getCustomField12()==null) || 
             (this.customField12!=null &&
              this.customField12.equals(other.getCustomField12()))) &&
            ((this.customField13==null && other.getCustomField13()==null) || 
             (this.customField13!=null &&
              this.customField13.equals(other.getCustomField13()))) &&
            ((this.customField14==null && other.getCustomField14()==null) || 
             (this.customField14!=null &&
              this.customField14.equals(other.getCustomField14()))) &&
            ((this.customField15==null && other.getCustomField15()==null) || 
             (this.customField15!=null &&
              this.customField15.equals(other.getCustomField15())));
        __equalsCalc = null;
        return _equals;
    }
 
    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getEmail() != null) {
            _hashCode += getEmail().hashCode();
        }
        if (getFirstName() != null) {
            _hashCode += getFirstName().hashCode();
        }
        if (getMiddleName() != null) {
            _hashCode += getMiddleName().hashCode();
        }
        if (getLastName() != null) {
            _hashCode += getLastName().hashCode();
        }
        if (getJobTitle() != null) {
            _hashCode += getJobTitle().hashCode();
        }
        if (getCompany() != null) {
            _hashCode += getCompany().hashCode();
        }
        if (getHomePhone() != null) {
            _hashCode += getHomePhone().hashCode();
        }
        if (getAddress1() != null) {
            _hashCode += getAddress1().hashCode();
        }
        if (getAddress2() != null) {
            _hashCode += getAddress2().hashCode();
        }
        if (getAddress3() != null) {
            _hashCode += getAddress3().hashCode();
        }
        if (getCity() != null) {
            _hashCode += getCity().hashCode();
        }
        if (getState() != null) {
            _hashCode += getState().hashCode();
        }
        if (getCountry() != null) {
            _hashCode += getCountry().hashCode();
        }
        if (getPostalCode() != null) {
            _hashCode += getPostalCode().hashCode();
        }
        if (getSubPostalCode() != null) {
            _hashCode += getSubPostalCode().hashCode();
        }
        if (getFax() != null) {
            _hashCode += getFax().hashCode();
        }
        if (getWebUrl() != null) {
            _hashCode += getWebUrl().hashCode();
        }
        if (getTitle() != null) {
            _hashCode += getTitle().hashCode();
        }
        if (getGender() != null) {
            _hashCode += getGender().hashCode();
        }
        if (getDate1() != null) {
            _hashCode += getDate1().hashCode();
        }
        if (getDate2() != null) {
            _hashCode += getDate2().hashCode();
        }
        if (getCustomField1() != null) {
            _hashCode += getCustomField1().hashCode();
        }
        if (getCustomField2() != null) {
            _hashCode += getCustomField2().hashCode();
        }
        if (getCustomField3() != null) {
            _hashCode += getCustomField3().hashCode();
        }
        if (getCustomField4() != null) {
            _hashCode += getCustomField4().hashCode();
        }
        if (getCustomField5() != null) {
            _hashCode += getCustomField5().hashCode();
        }
        if (getCustomField6() != null) {
            _hashCode += getCustomField6().hashCode();
        }
        if (getCustomField7() != null) {
            _hashCode += getCustomField7().hashCode();
        }
        if (getCustomField8() != null) {
            _hashCode += getCustomField8().hashCode();
        }
        if (getCustomField9() != null) {
            _hashCode += getCustomField9().hashCode();
        }
        if (getCustomField10() != null) {
            _hashCode += getCustomField10().hashCode();
        }
        if (getCustomField11() != null) {
            _hashCode += getCustomField11().hashCode();
        }
        if (getCustomField12() != null) {
            _hashCode += getCustomField12().hashCode();
        }
        if (getCustomField13() != null) {
            _hashCode += getCustomField13().hashCode();
        }
        if (getCustomField14() != null) {
            _hashCode += getCustomField14().hashCode();
        }
        if (getCustomField15() != null) {
            _hashCode += getCustomField15().hashCode();
        }
        __hashCodeCalc = false;
        return _hashCode;
    }
 
    // Type metadata
    private static org.apache.axis.description.TypeDesc typeDesc =
        new org.apache.axis.description.TypeDesc(Subscriber.class, true);
 
    static {
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "Subscriber"));
        org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("email");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "email"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("firstName");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "firstName"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("middleName");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "middleName"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("lastName");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "lastName"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("jobTitle");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "jobTitle"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("company");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "company"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("homePhone");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "homePhone"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("address1");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "address1"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("address2");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "address2"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("address3");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "address3"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("city");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "city"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("state");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "state"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("country");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "country"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("postalCode");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "postalCode"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("subPostalCode");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "subPostalCode"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("fax");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "fax"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("webUrl");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "webUrl"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("title");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "title"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("gender");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "gender"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("date1");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "date1"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("date2");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "date2"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField1");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField1"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField2");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField2"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField3");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField3"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField4");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField4"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField5");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField5"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField6");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField6"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField7");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField7"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField8");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField8"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField9");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField9"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField10");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField10"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField11");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField11"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField12");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField12"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField13");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField13"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField14");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField14"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("customField15");
        elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "customField15"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
    }
 
    /**
     * Return type metadata object
     */
    public static org.apache.axis.description.TypeDesc getTypeDesc() {
        return typeDesc;
    }
 
    /**
     * Get Custom Serializer
     */
    public static org.apache.axis.encoding.Serializer getSerializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new  org.apache.axis.encoding.ser.BeanSerializer(
            _javaType, _xmlType, typeDesc);
    }
 
    /**
     * Get Custom Deserializer
     */
    public static org.apache.axis.encoding.Deserializer getDeserializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new  org.apache.axis.encoding.ser.BeanDeserializer(
            _javaType, _xmlType, typeDesc);
    }
 
}