@regulaforensics/cordova-plugin-document-reader-api 6.8.1 → 6.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example/config.xml +1 -8
- package/example/package.json +8 -12
- package/example/www/js/index.js +21 -10
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/src/android/BluetoothUtil.kt +6 -6
- package/src/android/DocumentReader.java +147 -136
- package/src/android/Helpers.java +117 -3
- package/src/android/JSONConstructor.java +182 -261
- package/src/android/RegulaConfig.java +114 -26
- package/src/android/build.gradle +9 -1
- package/src/ios/RGLWDocumentReader.m +42 -36
- package/src/ios/RGLWJSONConstructor.h +8 -6
- package/src/ios/RGLWJSONConstructor.m +109 -92
- package/src/ios/RGLWRegulaConfig.h +2 -1
- package/src/ios/RGLWRegulaConfig.m +139 -41
- package/www/DocumentReader.js +263 -2958
package/www/DocumentReader.js
CHANGED
|
@@ -9,61 +9,21 @@ class DocumentReaderScenario {
|
|
|
9
9
|
result.name = jsonObject["name"]
|
|
10
10
|
result.caption = jsonObject["caption"]
|
|
11
11
|
result.description = jsonObject["description"]
|
|
12
|
-
|
|
13
|
-
return result
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
class CoreDetailedScenario {
|
|
18
|
-
static fromJson(jsonObject) {
|
|
19
|
-
if (jsonObject == null) return null
|
|
20
|
-
const result = new CoreDetailedScenario()
|
|
21
|
-
|
|
22
|
-
result.uvTorch = jsonObject["uvTorch"]
|
|
23
|
-
result.frameOrientation = jsonObject["frameOrientation"]
|
|
24
|
-
result.faceExt = jsonObject["faceExt"]
|
|
25
12
|
result.multiPageOff = jsonObject["multiPageOff"]
|
|
26
|
-
result.seriesProcessMode = jsonObject["seriesProcessMode"]
|
|
27
13
|
result.frameKWHLandscape = jsonObject["frameKWHLandscape"]
|
|
28
14
|
result.frameKWHPortrait = jsonObject["frameKWHPortrait"]
|
|
29
15
|
result.frameKWHDoublePageSpreadPortrait = jsonObject["frameKWHDoublePageSpreadPortrait"]
|
|
30
16
|
result.frameKWHDoublePageSpreadLandscape = jsonObject["frameKWHDoublePageSpreadLandscape"]
|
|
31
|
-
result.
|
|
32
|
-
result.
|
|
33
|
-
result.
|
|
17
|
+
result.frameOrientation = jsonObject["frameOrientation"]
|
|
18
|
+
result.uvTorch = jsonObject["uvTorch"]
|
|
19
|
+
result.faceExt = jsonObject["faceExt"]
|
|
20
|
+
result.seriesProcessMode = jsonObject["seriesProcessMode"]
|
|
34
21
|
result.manualCrop = jsonObject["manualCrop"]
|
|
35
22
|
|
|
36
23
|
return result
|
|
37
24
|
}
|
|
38
25
|
}
|
|
39
26
|
|
|
40
|
-
class FaceMetaData {
|
|
41
|
-
static fromJson(jsonObject) {
|
|
42
|
-
if (jsonObject == null) return null
|
|
43
|
-
const result = new FaceMetaData()
|
|
44
|
-
|
|
45
|
-
result.ID = jsonObject["ID"]
|
|
46
|
-
result.rollAngle = jsonObject["rollAngle"]
|
|
47
|
-
result.bounds = Bounds.fromJson(jsonObject["bounds"])
|
|
48
|
-
|
|
49
|
-
return result
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
class Bounds {
|
|
54
|
-
static fromJson(jsonObject) {
|
|
55
|
-
if (jsonObject == null) return null
|
|
56
|
-
const result = new Bounds()
|
|
57
|
-
|
|
58
|
-
result.x = jsonObject["x"]
|
|
59
|
-
result.y = jsonObject["y"]
|
|
60
|
-
result.width = jsonObject["width"]
|
|
61
|
-
result.height = jsonObject["height"]
|
|
62
|
-
|
|
63
|
-
return result
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
27
|
class Rect {
|
|
68
28
|
static fromJson(jsonObject) {
|
|
69
29
|
if (jsonObject == null) return null
|
|
@@ -99,7 +59,7 @@ class DocumentReaderGraphicField {
|
|
|
99
59
|
|
|
100
60
|
result.sourceType = jsonObject["sourceType"]
|
|
101
61
|
result.fieldType = jsonObject["fieldType"]
|
|
102
|
-
result.
|
|
62
|
+
result.light = jsonObject["light"]
|
|
103
63
|
result.pageIndex = jsonObject["pageIndex"]
|
|
104
64
|
result.originalPageIndex = jsonObject["originalPageIndex"]
|
|
105
65
|
result.fieldName = jsonObject["fieldName"]
|
|
@@ -301,8 +261,6 @@ class DocumentReaderNotification {
|
|
|
301
261
|
if (jsonObject == null) return null
|
|
302
262
|
const result = new DocumentReaderNotification()
|
|
303
263
|
|
|
304
|
-
result.code = jsonObject["code"]
|
|
305
|
-
result.value = jsonObject["value"]
|
|
306
264
|
result.notificationCode = jsonObject["notificationCode"]
|
|
307
265
|
result.dataFileType = jsonObject["dataFileType"]
|
|
308
266
|
result.progress = jsonObject["progress"]
|
|
@@ -613,6 +571,26 @@ class RFIDSessionData {
|
|
|
613
571
|
if (jsonObject["securityObjects"] != null)
|
|
614
572
|
for (const i in jsonObject["securityObjects"])
|
|
615
573
|
result.securityObjects.push(SecurityObject.fromJson(jsonObject["securityObjects"][i]))
|
|
574
|
+
result.dataGroups = []
|
|
575
|
+
if (jsonObject["dataGroups"] != null)
|
|
576
|
+
for (const i in jsonObject["dataGroups"])
|
|
577
|
+
result.dataGroups.push(jsonObject["dataGroups"][i])
|
|
578
|
+
result.dataFields = []
|
|
579
|
+
if (jsonObject["dataFields"] != null)
|
|
580
|
+
for (const i in jsonObject["dataFields"])
|
|
581
|
+
result.dataFields.push(DataField.fromJson(jsonObject["dataFields"][i]))
|
|
582
|
+
|
|
583
|
+
return result
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
class DataField {
|
|
588
|
+
static fromJson(jsonObject) {
|
|
589
|
+
if (jsonObject == null) return null
|
|
590
|
+
const result = new DataField()
|
|
591
|
+
|
|
592
|
+
result.data = jsonObject["data"]
|
|
593
|
+
result.fieldType = jsonObject["fieldType"]
|
|
616
594
|
|
|
617
595
|
return result
|
|
618
596
|
}
|
|
@@ -718,7 +696,7 @@ class DocumentReaderCompletion {
|
|
|
718
696
|
|
|
719
697
|
result.action = jsonObject["action"]
|
|
720
698
|
result.results = DocumentReaderResults.fromJson(jsonObject["results"])
|
|
721
|
-
result.error =
|
|
699
|
+
result.error = RegulaException.fromJson(jsonObject["error"])
|
|
722
700
|
|
|
723
701
|
return result
|
|
724
702
|
}
|
|
@@ -736,10 +714,10 @@ class RfidNotificationCompletion {
|
|
|
736
714
|
}
|
|
737
715
|
}
|
|
738
716
|
|
|
739
|
-
class
|
|
717
|
+
class RegulaException {
|
|
740
718
|
static fromJson(jsonObject) {
|
|
741
719
|
if (jsonObject == null) return null
|
|
742
|
-
const result = new
|
|
720
|
+
const result = new RegulaException()
|
|
743
721
|
|
|
744
722
|
result.errorCode = jsonObject["errorCode"]
|
|
745
723
|
result.message = jsonObject["message"]
|
|
@@ -948,6 +926,7 @@ class DocReaderDocumentsDatabase {
|
|
|
948
926
|
result.databaseDescription = jsonObject["databaseDescription"]
|
|
949
927
|
result.countriesNumber = jsonObject["countriesNumber"]
|
|
950
928
|
result.documentsNumber = jsonObject["documentsNumber"]
|
|
929
|
+
result.size = jsonObject["size"]
|
|
951
930
|
|
|
952
931
|
return result
|
|
953
932
|
}
|
|
@@ -1018,6 +997,142 @@ class DocumentReaderValidity {
|
|
|
1018
997
|
}
|
|
1019
998
|
}
|
|
1020
999
|
|
|
1000
|
+
class FaceApiParams {
|
|
1001
|
+
static fromJson(jsonObject) {
|
|
1002
|
+
if (jsonObject == null) return null
|
|
1003
|
+
const result = new FaceApiParams()
|
|
1004
|
+
|
|
1005
|
+
result.url = jsonObject["url"]
|
|
1006
|
+
result.mode = jsonObject["mode"]
|
|
1007
|
+
result.searchParams = Search.fromJson(jsonObject["searchParams"])
|
|
1008
|
+
result.threshold = jsonObject["threshold"]
|
|
1009
|
+
result.serviceTimeout = jsonObject["serviceTimeout"]
|
|
1010
|
+
result.proxy = jsonObject["proxy"]
|
|
1011
|
+
result.proxyPassword = jsonObject["proxyPassword"]
|
|
1012
|
+
result.proxyType = jsonObject["proxyType"]
|
|
1013
|
+
|
|
1014
|
+
return result
|
|
1015
|
+
}
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
class Search {
|
|
1019
|
+
static fromJson(jsonObject) {
|
|
1020
|
+
if (jsonObject == null) return null
|
|
1021
|
+
const result = new Search()
|
|
1022
|
+
|
|
1023
|
+
result.limit = jsonObject["limit"]
|
|
1024
|
+
result.threshold = jsonObject["threshold"]
|
|
1025
|
+
result.groupIds = []
|
|
1026
|
+
if (jsonObject["groupIds"] != null)
|
|
1027
|
+
for (const i in jsonObject["groupIds"])
|
|
1028
|
+
result.groupIds.push(jsonObject["groupIds"][i])
|
|
1029
|
+
|
|
1030
|
+
return result
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
class ImageQA {
|
|
1035
|
+
static fromJson(jsonObject) {
|
|
1036
|
+
if (jsonObject == null) return null
|
|
1037
|
+
const result = new ImageQA()
|
|
1038
|
+
|
|
1039
|
+
result.dpiThreshold = jsonObject["dpiThreshold"]
|
|
1040
|
+
result.angleThreshold = jsonObject["angleThreshold"]
|
|
1041
|
+
result.focusCheck = jsonObject["focusCheck"]
|
|
1042
|
+
result.glaresCheck = jsonObject["glaresCheck"]
|
|
1043
|
+
result.colornessCheck = jsonObject["colornessCheck"]
|
|
1044
|
+
result.moireCheck = jsonObject["moireCheck"]
|
|
1045
|
+
result.expectedPass = []
|
|
1046
|
+
if (jsonObject["expectedPass"] != null)
|
|
1047
|
+
for (const i in jsonObject["expectedPass"])
|
|
1048
|
+
result.expectedPass.push(jsonObject["expectedPass"][i])
|
|
1049
|
+
result.glaresCheckParams = GlaresCheckParams.fromJson(jsonObject["glaresCheckParams"])
|
|
1050
|
+
result.documentPositionIndent = jsonObject["documentPositionIndent"]
|
|
1051
|
+
|
|
1052
|
+
return result
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
class GlaresCheckParams {
|
|
1057
|
+
static fromJson(jsonObject) {
|
|
1058
|
+
if (jsonObject == null) return null
|
|
1059
|
+
const result = new GlaresCheckParams()
|
|
1060
|
+
|
|
1061
|
+
result.imgMarginPart = jsonObject["imgMarginPart"]
|
|
1062
|
+
result.maxGlaringPart = jsonObject["maxGlaringPart"]
|
|
1063
|
+
|
|
1064
|
+
return result
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
class RFIDParams {
|
|
1069
|
+
static fromJson(jsonObject) {
|
|
1070
|
+
if (jsonObject == null) return null
|
|
1071
|
+
const result = new RFIDParams()
|
|
1072
|
+
|
|
1073
|
+
result.paIgnoreNotificationCodes = []
|
|
1074
|
+
if (jsonObject["paIgnoreNotificationCodes"] != null)
|
|
1075
|
+
for (const i in jsonObject["paIgnoreNotificationCodes"])
|
|
1076
|
+
result.paIgnoreNotificationCodes.push(jsonObject["paIgnoreNotificationCodes"][i])
|
|
1077
|
+
|
|
1078
|
+
return result
|
|
1079
|
+
}
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
class OnlineProcessingConfig {
|
|
1083
|
+
static fromJson(jsonObject) {
|
|
1084
|
+
if (jsonObject == null) return null
|
|
1085
|
+
const result = new OnlineProcessingConfig()
|
|
1086
|
+
|
|
1087
|
+
result.mode = jsonObject["mode"]
|
|
1088
|
+
result.url = jsonObject["url"]
|
|
1089
|
+
result.processParam = jsonObject["processParam"]
|
|
1090
|
+
result.imageFormat = jsonObject["imageFormat"]
|
|
1091
|
+
result.imageCompressionQuality = jsonObject["imageCompressionQuality"]
|
|
1092
|
+
|
|
1093
|
+
return result
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
class ScannerConfig {
|
|
1098
|
+
static fromJson(jsonObject) {
|
|
1099
|
+
if (jsonObject == null) return null
|
|
1100
|
+
const result = new ScannerConfig()
|
|
1101
|
+
|
|
1102
|
+
result.scenario = jsonObject["scenario"]
|
|
1103
|
+
result.livePortrait = jsonObject["livePortrait"]
|
|
1104
|
+
result.extPortrait = jsonObject["extPortrait"]
|
|
1105
|
+
result.onlineProcessingConfig = OnlineProcessingConfig.fromJson(jsonObject["onlineProcessingConfig"])
|
|
1106
|
+
result.cameraId = jsonObject["cameraId"]
|
|
1107
|
+
|
|
1108
|
+
return result
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
class RecognizeConfig {
|
|
1113
|
+
static fromJson(jsonObject) {
|
|
1114
|
+
if (jsonObject == null) return null
|
|
1115
|
+
const result = new RecognizeConfig()
|
|
1116
|
+
|
|
1117
|
+
result.scenario = jsonObject["scenario"]
|
|
1118
|
+
result.livePortrait = jsonObject["livePortrait"]
|
|
1119
|
+
result.extPortrait = jsonObject["extPortrait"]
|
|
1120
|
+
result.onlineProcessingConfig = OnlineProcessingConfig.fromJson(jsonObject["onlineProcessingConfig"])
|
|
1121
|
+
result.image = jsonObject["image"]
|
|
1122
|
+
result.oneShotIdentification = jsonObject["oneShotIdentification"]
|
|
1123
|
+
result.images = []
|
|
1124
|
+
if (jsonObject["images"] != null)
|
|
1125
|
+
for (const i in jsonObject["images"])
|
|
1126
|
+
result.images.push(jsonObject["images"][i])
|
|
1127
|
+
result.imageInputData = []
|
|
1128
|
+
if (jsonObject["imageInputData"] != null)
|
|
1129
|
+
for (const i in jsonObject["imageInputData"])
|
|
1130
|
+
result.imageInputData.push(ImageInputData.fromJson(jsonObject["imageInputData"][i]))
|
|
1131
|
+
|
|
1132
|
+
return result
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1021
1136
|
class DocumentReaderResults {
|
|
1022
1137
|
|
|
1023
1138
|
static fromJson(jsonObject) {
|
|
@@ -1066,173 +1181,6 @@ class DocumentReaderResults {
|
|
|
1066
1181
|
|
|
1067
1182
|
return result
|
|
1068
1183
|
}
|
|
1069
|
-
|
|
1070
|
-
/**
|
|
1071
|
-
* @deprecated Use DocumentReader.textFieldValueBy...()
|
|
1072
|
-
*/
|
|
1073
|
-
getTextFieldValueByType({ fieldType, lcid = 0, source = -1, original = false }) {
|
|
1074
|
-
if (this.textResult == null) return null
|
|
1075
|
-
const field = this.findByTypeAndLcid(fieldType, lcid)
|
|
1076
|
-
if (field == null) return null
|
|
1077
|
-
const value = this.findBySource(field, source)
|
|
1078
|
-
if (value == null) return null
|
|
1079
|
-
return original ? value.originalValue : value.value
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
/**
|
|
1083
|
-
* @deprecated
|
|
1084
|
-
*/
|
|
1085
|
-
getTextFieldStatusByType(fieldType, lcid = 0) {
|
|
1086
|
-
if (this.textResult == null) return 0
|
|
1087
|
-
const field = this.findByTypeAndLcid(fieldType, lcid)
|
|
1088
|
-
return field != null ? field.status : 0
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
/**
|
|
1092
|
-
* @deprecated Use DocumentReader.graphicFieldImageBy...()
|
|
1093
|
-
*/
|
|
1094
|
-
getGraphicFieldImageByType({ fieldType, source = -1, pageIndex = -1, light = -1 }) {
|
|
1095
|
-
if (this.graphicResult == null) return null
|
|
1096
|
-
const foundFields = []
|
|
1097
|
-
|
|
1098
|
-
for (const field of this.graphicResult.fields)
|
|
1099
|
-
if (field.fieldType === fieldType)
|
|
1100
|
-
foundFields.push(field)
|
|
1101
|
-
if (source !== -1)
|
|
1102
|
-
for (const index in foundFields)
|
|
1103
|
-
if (foundFields[index].sourceType !== source)
|
|
1104
|
-
foundFields.splice(index, 1)
|
|
1105
|
-
if (light !== -1)
|
|
1106
|
-
for (const index in foundFields)
|
|
1107
|
-
if (foundFields[index].lightType !== light)
|
|
1108
|
-
foundFields.splice(index, 1)
|
|
1109
|
-
if (pageIndex !== -1)
|
|
1110
|
-
for (const index in foundFields)
|
|
1111
|
-
if (foundFields[index].pageIndex !== pageIndex)
|
|
1112
|
-
foundFields.splice(index, 1)
|
|
1113
|
-
if (foundFields.length > 0)
|
|
1114
|
-
return foundFields[0].value
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
/**
|
|
1118
|
-
* @deprecated
|
|
1119
|
-
*/
|
|
1120
|
-
getQualityResult(imageQualityCheckType, securityFeature = -1, pageIndex = 0) {
|
|
1121
|
-
let resultSum = 2
|
|
1122
|
-
if (this.imageQuality == null) return resultSum
|
|
1123
|
-
|
|
1124
|
-
let imageQualityGroup
|
|
1125
|
-
|
|
1126
|
-
for (const iq of this.imageQuality)
|
|
1127
|
-
if (iq != null && iq.pageIndex === pageIndex)
|
|
1128
|
-
imageQualityGroup = iq
|
|
1129
|
-
if (imageQualityGroup == null)
|
|
1130
|
-
return resultSum
|
|
1131
|
-
|
|
1132
|
-
for (const field of imageQualityGroup.imageQualityList)
|
|
1133
|
-
if (field.type === imageQualityCheckType)
|
|
1134
|
-
if (securityFeature === -1) {
|
|
1135
|
-
if (field.result === 0) {
|
|
1136
|
-
resultSum = 0
|
|
1137
|
-
break
|
|
1138
|
-
}
|
|
1139
|
-
if (field.result === 1)
|
|
1140
|
-
resultSum = field.result
|
|
1141
|
-
} else if (field.featureType === securityFeature) {
|
|
1142
|
-
resultSum = field.result
|
|
1143
|
-
break
|
|
1144
|
-
}
|
|
1145
|
-
|
|
1146
|
-
return resultSum
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
/**
|
|
1150
|
-
* @deprecated
|
|
1151
|
-
*/
|
|
1152
|
-
findByTypeAndLcid(type, lcid) {
|
|
1153
|
-
let field
|
|
1154
|
-
const foundFields = []
|
|
1155
|
-
|
|
1156
|
-
for (field of this.textResult.fields)
|
|
1157
|
-
if (field.fieldType === type)
|
|
1158
|
-
foundFields.push(field)
|
|
1159
|
-
if (foundFields.length <= 0)
|
|
1160
|
-
return null
|
|
1161
|
-
|
|
1162
|
-
let foundField = null
|
|
1163
|
-
|
|
1164
|
-
for (field of foundFields)
|
|
1165
|
-
if (lcid === 0) {
|
|
1166
|
-
foundField = field
|
|
1167
|
-
if (field.lcid === lcid)
|
|
1168
|
-
break
|
|
1169
|
-
} else if (field.lcid === lcid)
|
|
1170
|
-
return field
|
|
1171
|
-
|
|
1172
|
-
return foundField
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
/**
|
|
1176
|
-
* @deprecated
|
|
1177
|
-
*/
|
|
1178
|
-
findBySource(field, sourceType) {
|
|
1179
|
-
let value
|
|
1180
|
-
if (sourceType === -1) {
|
|
1181
|
-
const mrzVal = this.findBySource(field, 3)
|
|
1182
|
-
if (mrzVal != null)
|
|
1183
|
-
return mrzVal
|
|
1184
|
-
value = this.findBySource(field, 18)
|
|
1185
|
-
if (value != null)
|
|
1186
|
-
return value
|
|
1187
|
-
const visualVal = this.findBySource(field, 17)
|
|
1188
|
-
return visualVal != null ? visualVal : null
|
|
1189
|
-
}
|
|
1190
|
-
for (const item of field.values)
|
|
1191
|
-
if (item.sourceType === sourceType)
|
|
1192
|
-
return item
|
|
1193
|
-
|
|
1194
|
-
return null
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
|
-
/**
|
|
1198
|
-
* @deprecated Use DocumentReader.containers()
|
|
1199
|
-
*/
|
|
1200
|
-
getContainers(resultTypes) {
|
|
1201
|
-
try {
|
|
1202
|
-
const json = JSON.parse(this.rawResult)
|
|
1203
|
-
const containerList = json.List
|
|
1204
|
-
const resultArray = []
|
|
1205
|
-
for (const container of containerList){
|
|
1206
|
-
if (container == null || container.length == 0)
|
|
1207
|
-
continue
|
|
1208
|
-
for (const resultType of resultTypes)
|
|
1209
|
-
if(resultType == container.result_type){
|
|
1210
|
-
resultArray.push(container)
|
|
1211
|
-
break
|
|
1212
|
-
}
|
|
1213
|
-
}
|
|
1214
|
-
if (resultArray.length == 0)
|
|
1215
|
-
return null
|
|
1216
|
-
const newContainerList = {}
|
|
1217
|
-
newContainerList.List = resultArray
|
|
1218
|
-
const newJson = {}
|
|
1219
|
-
newJson.ContainerList = newContainerList
|
|
1220
|
-
newJson.TransactionInfo = json.TransactionInfo
|
|
1221
|
-
} catch (error) {
|
|
1222
|
-
return null
|
|
1223
|
-
}
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
/**
|
|
1227
|
-
* @deprecated DocumentReader.encryptedContainers()
|
|
1228
|
-
*/
|
|
1229
|
-
getEncryptedContainers() {
|
|
1230
|
-
return this.getContainers([
|
|
1231
|
-
eRPRM_ResultType.RPRM_RESULT_TYPE_INTERNAL_RFID_SESSION,
|
|
1232
|
-
eRPRM_ResultType.RPRM_RESULT_TYPE_INTERNAL_ENCRYPTED_RCL,
|
|
1233
|
-
eRPRM_ResultType.RPRM_RESULT_TYPE_INTERNAL_LICENSE
|
|
1234
|
-
])
|
|
1235
|
-
}
|
|
1236
1184
|
}
|
|
1237
1185
|
|
|
1238
1186
|
// Enum
|
|
@@ -1263,10 +1211,9 @@ const eRPRM_Authenticity = {
|
|
|
1263
1211
|
HOLOGRAMS_DETECTION: 524288,
|
|
1264
1212
|
MRZ: 8388608,
|
|
1265
1213
|
STATUS_ONLY: 0x80000000,
|
|
1266
|
-
OVI:
|
|
1267
|
-
LIVENESS:
|
|
1268
|
-
OCR:
|
|
1269
|
-
UV: 1 | 4 | 16,
|
|
1214
|
+
OVI: 1024,
|
|
1215
|
+
LIVENESS: 2097152,
|
|
1216
|
+
OCR: 4194304,
|
|
1270
1217
|
}
|
|
1271
1218
|
|
|
1272
1219
|
const eRFID_ErrorCodes = {
|
|
@@ -1384,241 +1331,6 @@ const eRFID_ErrorCodes = {
|
|
|
1384
1331
|
RFID_ERROR_LAYER34_SAM_ERROR: 0x840D0000,
|
|
1385
1332
|
RFID_ERROR_LAYER34_SAM_COLLISION: 0x840E0000,
|
|
1386
1333
|
RFID_ERROR_LAYER34_SAM_ACKNOWLEDGE: 0x840F0000,
|
|
1387
|
-
|
|
1388
|
-
getTranslation: function (value) {
|
|
1389
|
-
switch (value) {
|
|
1390
|
-
case this.RFID_ERROR_NO_ERROR:
|
|
1391
|
-
return "RFID: No error"
|
|
1392
|
-
case this.RFID_ERROR_ALREADY_DONE:
|
|
1393
|
-
return "RFID: The requested operation is already performed"
|
|
1394
|
-
case this.RFID_ERROR_FAILED:
|
|
1395
|
-
return "RFID: Failed"
|
|
1396
|
-
case this.RFID_ERROR_NO_CHIP_DETECTED:
|
|
1397
|
-
return "RFID: No chip is detected"
|
|
1398
|
-
case this.RFID_ERROR_NOT_AVAILABLE:
|
|
1399
|
-
return "RFID: Unavailable"
|
|
1400
|
-
case this.RFID_ERROR_INVALID_PARAMETER:
|
|
1401
|
-
return "RFID: Invalid parameter in ExecuteCommand() call found"
|
|
1402
|
-
case this.RFID_ERROR_NOT_INITIALIZED:
|
|
1403
|
-
return "RFID: Device is uninitialized"
|
|
1404
|
-
case this.RFID_ERROR_NOT_ENOUGH_MEMORY:
|
|
1405
|
-
return "RFID: Out of memory"
|
|
1406
|
-
case this.RFID_ERROR_INVALID_DIRECTORY:
|
|
1407
|
-
return "RFID: Invalid directory"
|
|
1408
|
-
case this.RFID_ERROR_UNKNOWN_COMMAND:
|
|
1409
|
-
return "RFID: Unknown command"
|
|
1410
|
-
case this.RFID_ERROR_FILE_IO_ERROR:
|
|
1411
|
-
return "RFID File: IO Error"
|
|
1412
|
-
case this.RFID_ERROR_BUSY:
|
|
1413
|
-
return "RFID: RFID is busy"
|
|
1414
|
-
case this.RFID_ERROR_OLD_FIRMWARE:
|
|
1415
|
-
return "RFID: The firmware needs to be updated to a newer version"
|
|
1416
|
-
case this.RFID_ERROR_PCSC_FAILED:
|
|
1417
|
-
return "PCSC: Failed"
|
|
1418
|
-
case this.RFID_ERROR_PCSC_READER_NOT_AVAILABLE:
|
|
1419
|
-
return "PCSC: The reader is unavailable"
|
|
1420
|
-
case this.RFID_ERROR_PCSC_CANT_CONNECT_CARD:
|
|
1421
|
-
return "PCSC: The card cannot be connected"
|
|
1422
|
-
case this.RFID_ERROR_PCSC_CARD_IS_NOT_CONNECTED:
|
|
1423
|
-
return "PCSC: The card is not connected"
|
|
1424
|
-
case this.RFID_ERROR_PCSC_OPERATION_CANCELLED:
|
|
1425
|
-
return "PCSC: Operation is cancelled"
|
|
1426
|
-
case this.RFID_ERROR_PCSC_CARD_IS_BUSY:
|
|
1427
|
-
return "PCSC: The card is busy"
|
|
1428
|
-
case this.RFID_ERROR_PCSC_FAILED_SCARD:
|
|
1429
|
-
return "PCSC: Failed Smart Card"
|
|
1430
|
-
case this.RFID_ERROR_PCSC_EXT_LE_FAILED:
|
|
1431
|
-
return "PCSC: ExtLe Failed"
|
|
1432
|
-
case this.RFID_ERROR_LAYER6_SECURITY_MANAGER:
|
|
1433
|
-
return "LAYER6: Secure Messaging was not activated"
|
|
1434
|
-
case this.RFID_ERROR_LAYER6_APP_SELECTION_FAILURE:
|
|
1435
|
-
return "LAYER6: ISO7816_A_03 \"Application selection failure\""
|
|
1436
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_MAC_FAIL:
|
|
1437
|
-
return "LAYER6: ISO7816_B_01 \"Mutual authentication MAC failure\""
|
|
1438
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_ENC_FAIL:
|
|
1439
|
-
return "LAYER6: ISO7816_B_02 \"Mutual authentication encryption failure\""
|
|
1440
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_FAILURE:
|
|
1441
|
-
return "LAYER6: ISO7816_B_03 \"Mutual authentication failure\""
|
|
1442
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_FAILURE_DATA:
|
|
1443
|
-
return "LAYER6: ISO7816_B_03 \"Mutual authentication failure data\""
|
|
1444
|
-
case this.RFID_ERROR_LAYER6_SM_DO_8E_MISSING:
|
|
1445
|
-
return "LAYER6: SM failure – MAC missing"
|
|
1446
|
-
case this.RFID_ERROR_LAYER6_SM_DO_87_MISSING:
|
|
1447
|
-
return "LAYER6: SM failure – cryptogram missing"
|
|
1448
|
-
case this.RFID_ERROR_LAYER6_SM_DO_99_MISSING:
|
|
1449
|
-
return "LAYER6: SM failure – secured status bytes missing"
|
|
1450
|
-
case this.RFID_ERROR_LAYER6_SM_MAC_INCORRECT:
|
|
1451
|
-
return "LAYER6: SM failure – incorrect MAC"
|
|
1452
|
-
case this.RFID_ERROR_LAYER6_SM_DO_87_INCORRECT:
|
|
1453
|
-
return "LAYER6: SM failure – incorrect cryptogram"
|
|
1454
|
-
case this.RFID_ERROR_LAYER6_NON_TLV_RESPONSE_DATA:
|
|
1455
|
-
return "LAYER6: Not TLV response data"
|
|
1456
|
-
case this.RFID_ERROR_LAYER6_WRONG_RND_ICC_LENGTH:
|
|
1457
|
-
return "LAYER6: Wrong data length (APDU_INS_GET_CHALLENGE)"
|
|
1458
|
-
case this.RFID_ERROR_LAYER6_INT_AUTH_FAILURE:
|
|
1459
|
-
return "LAYER6: APDU_INS_INTERNAL_AUTHENTICATE failure"
|
|
1460
|
-
case this.RFID_ERROR_LAYER6_MSE_SET_KAT_FAILURE:
|
|
1461
|
-
return "LAYER6: MSE:Set KAT failure"
|
|
1462
|
-
case this.RFID_ERROR_LAYER6_MSE_SET_DST_FAILURE:
|
|
1463
|
-
return "LAYER6: MSE:Set DST failure"
|
|
1464
|
-
case this.RFID_ERROR_LAYER6_PSO_CERTIFICATE_FAILURE:
|
|
1465
|
-
return "LAYER6: PSO CERTIFICATE failure"
|
|
1466
|
-
case this.RFID_ERROR_LAYER6_MSE_SET_AT_FAILURE:
|
|
1467
|
-
return "LAYER6: MSE:Set AT failure"
|
|
1468
|
-
case this.RFID_ERROR_LAYER6_GET_CHALLENGE_FAILURE:
|
|
1469
|
-
return "LAYER6: GET CHALLENGE failure"
|
|
1470
|
-
case this.RFID_ERROR_LAYER6_EXT_AUTH_FAILURE:
|
|
1471
|
-
return "LAYER6: APDU_INS_EXTERNAL_AUTHENTICATE (external authentication) failure"
|
|
1472
|
-
case this.RFID_ERROR_LAYER6_GENERAL_AUTH_FAILURE:
|
|
1473
|
-
return "LAYER6: General Authenticity Failure"
|
|
1474
|
-
case this.RFID_ERROR_LAYER6_FILE_NOT_FOUND:
|
|
1475
|
-
return "LAYER6: File selection failure / file not found"
|
|
1476
|
-
case this.RFID_ERROR_LAYER6_FILE_EOF1:
|
|
1477
|
-
return "LAYER6: Reading beyond EOF / Unexpected EOF"
|
|
1478
|
-
case this.RFID_ERROR_LAYER6_FILE_EOF2:
|
|
1479
|
-
return "LAYER6: Reading beyond EOF / Unexpected EOF"
|
|
1480
|
-
case this.RFID_ERROR_LAYER6_INCORRECT_PARAMS:
|
|
1481
|
-
return "LAYER6: Incorrect params"
|
|
1482
|
-
case this.RFID_ERROR_LAYER6_NO_REFERENCE_DATA:
|
|
1483
|
-
return "LAYER6: No reference data"
|
|
1484
|
-
case this.RFID_ERROR_LAYER6_PWD_SUSPEND:
|
|
1485
|
-
return "LAYER6: PWD suspended"
|
|
1486
|
-
case this.RFID_ERROR_LAYER6_PWD_BLOCKED:
|
|
1487
|
-
return "LAYER6: PWD blocked"
|
|
1488
|
-
case this.RFID_ERROR_LAYER6_PWD_DEACTIVATED:
|
|
1489
|
-
return "LAYER6: PWD deactivated"
|
|
1490
|
-
case this.RFID_ERROR_LAYER6_PWD_BLOCKED2:
|
|
1491
|
-
return "LAYER6: PWD blocked 2"
|
|
1492
|
-
case this.RFID_ERROR_LAYER6_PWD_DEACTIVATED2:
|
|
1493
|
-
return "LAYER6: PWD deactivated 2"
|
|
1494
|
-
case this.RFID_ERROR_LAYER6_PWD_SUSPEND2:
|
|
1495
|
-
return "LAYER6: PWD suspended 2"
|
|
1496
|
-
case this.RFID_ERROR_LAYER6_PWD_FAILED:
|
|
1497
|
-
return "LAYER6: PWD failed"
|
|
1498
|
-
case this.RFID_ERROR_NOT_PERFORMED:
|
|
1499
|
-
return "RFID: Not performed"
|
|
1500
|
-
case this.RFID_ERROR_SESSION_IS_CLOSED:
|
|
1501
|
-
return "RFID: Session is closed"
|
|
1502
|
-
case this.RFID_ERROR_SESSION_TERMINAL_UNSUPPORTED_OPERATION:
|
|
1503
|
-
return "RFID: Unsupported terminal operation"
|
|
1504
|
-
case this.RFID_ERROR_SESSION_TERMINAL_TYPE_UNKNOWN:
|
|
1505
|
-
return "RFID: Terminal type unknown"
|
|
1506
|
-
case this.RFID_ERROR_SESSION_TERMINAL_TYPE_BAD_CERTIFICATE:
|
|
1507
|
-
return "RFID: Terminal type bad certificate"
|
|
1508
|
-
case this.RFID_ERROR_SESSION_TERMINAL_TYPE_NOT_SET:
|
|
1509
|
-
return "RFID: Terminal type not set"
|
|
1510
|
-
case this.RFID_ERROR_SESSION_PROCEDURE_TYPE_UNKNOWN:
|
|
1511
|
-
return "RFID: Unknown procedure type"
|
|
1512
|
-
case this.RFID_ERROR_Session_Procedure_Type_Unsupported:
|
|
1513
|
-
return "RFID: Unsupported procedure type"
|
|
1514
|
-
case this.RFID_ERROR_SESSION_PROCEDURE_TYPE_NOT_SET:
|
|
1515
|
-
return "RFID: Procedure type not set"
|
|
1516
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_UNKNOWN_TYPE:
|
|
1517
|
-
return "RFID: Access key unknown type"
|
|
1518
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_UNSUPPORTED_SM_TYPE:
|
|
1519
|
-
return "RFID: Access key unsupported SM type"
|
|
1520
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_INCORRECT_SM_TYPE:
|
|
1521
|
-
return "RFID: Access key incorrect SM type"
|
|
1522
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_RESTRICTED:
|
|
1523
|
-
return "RFID: Access key restricted"
|
|
1524
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_INCORRECT_DATA:
|
|
1525
|
-
return "RFID: Access key incorrect data"
|
|
1526
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_NOT_SET:
|
|
1527
|
-
return "RFID: Access key not set"
|
|
1528
|
-
case this.RFID_ERROR_SESSION_PWD_MANAGEMENT_NOT_AUTHORIZED:
|
|
1529
|
-
return "RFID: PWD management not authorized"
|
|
1530
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_UNKNOWN_TYPE:
|
|
1531
|
-
return "RFID: Access control unknown type"
|
|
1532
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_SM:
|
|
1533
|
-
return "RFID: Access control unknown type"
|
|
1534
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_PACE:
|
|
1535
|
-
return "RFID: PACE required"
|
|
1536
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_CA_KEYS:
|
|
1537
|
-
return "RFID: CA keys required"
|
|
1538
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_TA:
|
|
1539
|
-
return "RFID: TA required"
|
|
1540
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_CA:
|
|
1541
|
-
return "RFID: CA required"
|
|
1542
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_INCORRECT_OPTION_CA:
|
|
1543
|
-
return "RFID: Incorrect option CA"
|
|
1544
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_CA_FAILED:
|
|
1545
|
-
return "RFID: CA failed"
|
|
1546
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_TA_FAILED:
|
|
1547
|
-
return "RFID: TA failed"
|
|
1548
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_AA_FAILED:
|
|
1549
|
-
return "RFID: AA failed"
|
|
1550
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_RI_FAILED:
|
|
1551
|
-
return "RFID: RI failed"
|
|
1552
|
-
case this.RFID_ERROR_SESSION_PA_SIGNATURE_CHECK_FAILED:
|
|
1553
|
-
return "RFID: SO signature check failed"
|
|
1554
|
-
case this.RFID_ERROR_SESSION_PA_HASH_CHECK_FAILED:
|
|
1555
|
-
return "RFID: Hash check failed"
|
|
1556
|
-
case this.RFID_ERROR_SESSION_INVALID_AUX_DATA_DATE_OF_EXPIRY:
|
|
1557
|
-
return "RFID: Invalid aux data - date of expiry"
|
|
1558
|
-
case this.RFID_ERROR_SESSION_INVALID_AUX_DATA_DATE_OF_BIRTH:
|
|
1559
|
-
return "RFID: Invalid aux data - date of birth"
|
|
1560
|
-
case this.RFID_ERROR_SESSION_INVALID_AUX_DATA_COMMUNITY_ID:
|
|
1561
|
-
return "RFID: Invalid aux data - community ID"
|
|
1562
|
-
case this.RFID_ERROR_SESSION_E_SIGN_REQUIRES_APP_SELECTION:
|
|
1563
|
-
return "RFID: eSign requires app selection"
|
|
1564
|
-
case this.RFID_ERROR_SESSION_E_SIGN_PIN_NOT_SET:
|
|
1565
|
-
return "RFID: eSign PIN not set"
|
|
1566
|
-
case this.RFID_ERROR_SESSION_E_SIGN_PIN_NOT_VERIFIED:
|
|
1567
|
-
return "RFID: eSign PIN not verified"
|
|
1568
|
-
case this.RFID_ERROR_SESSION_INCORRECT_DATA:
|
|
1569
|
-
return "RFID: Incorrect data"
|
|
1570
|
-
case this.RFID_ERROR_SESSION_FILE_NOT_ENOUGH_DATA:
|
|
1571
|
-
return "RFID file: Insufficient data"
|
|
1572
|
-
case this.RFID_ERROR_SESSION_FILE_INCORRECT_DATA:
|
|
1573
|
-
return "RFID file: Incorrect data"
|
|
1574
|
-
case this.RFID_ERROR_SESSION_FILE_UNEXPECTED_DATA:
|
|
1575
|
-
return "RFID file: Unexpected data"
|
|
1576
|
-
case this.RFID_ERROR_SESSION_FILE_CONTENTS_UNEXPECTED_DATA:
|
|
1577
|
-
return "RFID file: Contains unexpected data"
|
|
1578
|
-
case this.RFID_ERROR_SESSION_FILE_WRONG_TAG:
|
|
1579
|
-
return "RFID file: Wrong tag"
|
|
1580
|
-
case this.RFID_ERROR_SESSION_FILE_CANT_USE_DATA:
|
|
1581
|
-
return "RFID file: Cannot use data"
|
|
1582
|
-
case this.RFID_ERROR_SESSION_FILE_CANT_READ_DATA:
|
|
1583
|
-
return "RFID file: Cannot read data"
|
|
1584
|
-
case this.RFID_ERROR_SESSION_FILE_ACCESS_DENIED:
|
|
1585
|
-
return "RFID file: Access denied"
|
|
1586
|
-
case this.RFID_ERROR_LAYER34_NO_ERROR:
|
|
1587
|
-
return "RFID: Layer 34 - No error"
|
|
1588
|
-
case this.RFID_ERROR_LAYER34_TIME_OUT:
|
|
1589
|
-
return "RFID: Layer 34 - Timeout"
|
|
1590
|
-
case this.RFID_ERROR_LAYER34_COLLISION:
|
|
1591
|
-
return "RFID: Layer 34 - Collision"
|
|
1592
|
-
case this.RFID_ERROR_LAYER34_CRC:
|
|
1593
|
-
return "RFID: Layer 34 - CRC"
|
|
1594
|
-
case this.RFID_ERROR_LAYER34_DATA_INTEGRITY:
|
|
1595
|
-
return "RFID: Layer 34 - Data integrity"
|
|
1596
|
-
case this.RFID_ERROR_LAYER34_DATA_LENGTH:
|
|
1597
|
-
return "RFID: Layer 34 - Data length"
|
|
1598
|
-
case this.RFID_ERROR_Layer34_RFU:
|
|
1599
|
-
return "RFID: Layer 34 - RFU"
|
|
1600
|
-
case this.RFID_ERROR_LAYER34_COLLISION_TOO_MANY:
|
|
1601
|
-
return "RFID: Layer 34 - Too many collision"
|
|
1602
|
-
case this.RFID_ERROR_LAYER34_PROTOCOL_B:
|
|
1603
|
-
return "RFID: Layer 34 - Protocol B"
|
|
1604
|
-
case this.RFID_ERROR_LAYER34_DATA_CONTENTS:
|
|
1605
|
-
return "RFID: Layer 34 - Data contents"
|
|
1606
|
-
case this.RFID_ERROR_LAYER34_PROTOCOL:
|
|
1607
|
-
return "RFID: Layer 34 - Protocol"
|
|
1608
|
-
case this.RFID_ERROR_LAYER34_GLOBAL_TIME_OUT:
|
|
1609
|
-
return "RFID: Layer 34 - Globa timeout"
|
|
1610
|
-
case this.RFID_ERROR_LAYER34_MIFARE_AUTH:
|
|
1611
|
-
return "RFID: Layer 34 - MIFARE auth"
|
|
1612
|
-
case this.RFID_ERROR_LAYER34_SAM_ERROR:
|
|
1613
|
-
return "RFID: Layer 34 - SAM error"
|
|
1614
|
-
case this.RFID_ERROR_LAYER34_SAM_COLLISION:
|
|
1615
|
-
return "RFID: Layer 34 - SAM collision"
|
|
1616
|
-
case this.RFID_ERROR_LAYER34_SAM_ACKNOWLEDGE:
|
|
1617
|
-
return "RFID: Layer 34 - SAM acknowledge"
|
|
1618
|
-
default:
|
|
1619
|
-
return value
|
|
1620
|
-
}
|
|
1621
|
-
}
|
|
1622
1334
|
}
|
|
1623
1335
|
|
|
1624
1336
|
const eLDS_ParsingErrorCodes = {
|
|
@@ -1748,267 +1460,6 @@ const eLDS_ParsingErrorCodes = {
|
|
|
1748
1460
|
ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_ALGORITHM: 0x81000308,
|
|
1749
1461
|
ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_CERTIFICATE: 0x81000309,
|
|
1750
1462
|
ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_VALUE: 0x8100030A,
|
|
1751
|
-
|
|
1752
|
-
getTranslation: function (value) {
|
|
1753
|
-
switch (value) {
|
|
1754
|
-
case this.ERR_LDS_OK:
|
|
1755
|
-
return "OK"
|
|
1756
|
-
case this.ERR_LDS_ASN_INCORRECT_DATA:
|
|
1757
|
-
return "Error - ASN: Incorrect data"
|
|
1758
|
-
case this.RR_LDS_ASN_NOT_ENOUGH_DATA:
|
|
1759
|
-
return "Error - ASN: Not enough data"
|
|
1760
|
-
case this.ERR_LDS_ASN_CONTENTS_UNEXPECTED_DATA:
|
|
1761
|
-
return "Error - ASN: Contents unexpected data"
|
|
1762
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_INCORRECT_DATA:
|
|
1763
|
-
return "Error - ASN Signed data: Incorrect data"
|
|
1764
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_ENCAP_CONTENTS_INCORRECT_DATA:
|
|
1765
|
-
return "Error - ASN Signed data: Encap contents incorrect data"
|
|
1766
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_VERSION_INCORRECT_DATA:
|
|
1767
|
-
return "Error - ASN Signed data: Version incorrect data"
|
|
1768
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_DIGEST_ALGORITHMS_INCORRECT_DATA:
|
|
1769
|
-
return "Error - ASN Signed data: Digest algorithms incorrect data"
|
|
1770
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_INCORRECT_DATA:
|
|
1771
|
-
return "Error - ASN LDS object: Incorrect data"
|
|
1772
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_VERSION_INCORRECT_DATA:
|
|
1773
|
-
return "Error - ASN LDS object: Version incorrect data"
|
|
1774
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_DIGEST_ALGORITHM_INCORRECT_DATA:
|
|
1775
|
-
return "Error - ASN LDS object: Digest algorithm incorrect data"
|
|
1776
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_DG_HASHES_INCORRECT_DATA:
|
|
1777
|
-
return "Error - ASN LDS object: DG hashes incorrect data"
|
|
1778
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_VERSION_INFO_INCORRECT_DATA:
|
|
1779
|
-
return "Error - ASN LDS object: Version info incorrect data"
|
|
1780
|
-
case this.ERR_LDS_ASN_CERTIFICATE_INCORRECT_DATA:
|
|
1781
|
-
return "Error - ASN Certificate: Incorrect data"
|
|
1782
|
-
case this.ERR_LDS_ASN_CERTIFICATE_VERSION_INCORRECT_DATA:
|
|
1783
|
-
return "Error - ASN Certificate: Version incorrect data"
|
|
1784
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SN_INCORRECT_DATA:
|
|
1785
|
-
return "Error - ASN Certificate: SN incorrect data"
|
|
1786
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SIGNATURE_INCORRECT_DATA:
|
|
1787
|
-
return "Error - ASN Certificate: Signature incorrect data"
|
|
1788
|
-
case this.ERR_LDS_ASN_CERTIFICATE_ISSUER_INCORRECT_DATA:
|
|
1789
|
-
return "Error - ASN Certificate: Issuer incorrect data"
|
|
1790
|
-
case this.ERR_LDS_ASN_CERTIFICATE_VALIDITY_INCORRECT_DATA:
|
|
1791
|
-
return "Error - ASN Certificate: Validity incorrect data"
|
|
1792
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SUBJECT_INCORRECT_DATA:
|
|
1793
|
-
return "Error - ASN Certificate: Subject incorrect data"
|
|
1794
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SUBJECT_PK_INCORRECT_DATA:
|
|
1795
|
-
return "Error - ASN Certificate: Subject PK incorrect data"
|
|
1796
|
-
case this.ERR_LDS_ASN_CERTIFICATE_EXTENSIONS_INCORRECT_DATA:
|
|
1797
|
-
return "Error - ASN Certificate: Extensions incorrect data"
|
|
1798
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_INCORRECT_DATA:
|
|
1799
|
-
return "Error - ASN Signer info: Incorrect data"
|
|
1800
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_VERSION_INCORRECT_DATA:
|
|
1801
|
-
return "Error - ASN Signer info: Version incorrect data"
|
|
1802
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SID_INCORRECT_DATA:
|
|
1803
|
-
return "Error - ASN Signer info: SID incorrect data"
|
|
1804
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_DIGEST_ALG_INCORRECT_DATA:
|
|
1805
|
-
return "Error - ASN Signer info: Digest algorithms incorrect data"
|
|
1806
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SIGNED_ATTRS_INCORRECT_DATA:
|
|
1807
|
-
return "Error - ASN Signer info: Signed attributes incorrect data"
|
|
1808
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SIGN_ALG_INCORRECT_DATA:
|
|
1809
|
-
return "Error - ASN Signer info: Sign algorithms incorrect data"
|
|
1810
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SIGNATURE_INCORRECT_DATA:
|
|
1811
|
-
return "Error - ASN Signer info: Signature incorrect data"
|
|
1812
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_UNSIGNED_ATTRS_INCORRECT_DATA:
|
|
1813
|
-
return "Error - ASN Signer info: Unsigned attributes incorrect data"
|
|
1814
|
-
case this.ERR_LDS_ICAO_LDS_OBJECT_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1815
|
-
return "Error - ICAO LDS object: Unsupported digest algorithm"
|
|
1816
|
-
case -this.ERR_LDS_ICAO_SIGNED_DATA_SIGNER_INFOS_EMPTY:
|
|
1817
|
-
return "Error - ICAO Signed data: Signer info empty"
|
|
1818
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1819
|
-
return "Error - ICAO Signer info: Unsupported digest algorithm"
|
|
1820
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_UNSUPPORTED_SIGNATURE_ALGORITHM:
|
|
1821
|
-
return "Error - ICAO Signer info: Unsupported signature algorithm"
|
|
1822
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_MESSAGE_DIGEST_ERROR:
|
|
1823
|
-
return "Error - ICAO Signer info: Message digest error"
|
|
1824
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_SIGNED_ATTRS_MISSED:
|
|
1825
|
-
return "Error - ICAO Signer info: Signed attributes missed"
|
|
1826
|
-
case this.ERR_LDS_AUTH_SIGNER_INFO_CANT_FIND_CERTIFICATE:
|
|
1827
|
-
return "Error - Auth: Signer info cannot find certificate"
|
|
1828
|
-
case this.ERR_LDS_AUTH_ERROR:
|
|
1829
|
-
return "Error - Auth: Error"
|
|
1830
|
-
case this.ERR_LDS_AUTH_UNSUPPORTED_SIGNATURE_ALGORITHM:
|
|
1831
|
-
return "Error - Auth: Unsupported signature algorithm"
|
|
1832
|
-
case this.ERR_LDS_AUTH_UNSUPPORTED_PUBLIC_KEY_ALGORITHM:
|
|
1833
|
-
return "Error - Auth: Unsupported public key algorithm"
|
|
1834
|
-
case this.ERR_LDS_AUTH_MESSED_ALGORITHMS:
|
|
1835
|
-
return "Error - Auth: Messed algorithms"
|
|
1836
|
-
case this.ERR_LDS_AUTH_PUBLIC_KEY_DATA_INVALID:
|
|
1837
|
-
return "Error - Auth: Public key data invalid"
|
|
1838
|
-
case this.ERR_LDS_AUTH_ALGORITHM_PARAMETERS_DATA_INVALID:
|
|
1839
|
-
return "Error - Auth: Algorithm parameters data invalid"
|
|
1840
|
-
case this.ERR_LDS_AUTH_SIGNATURE_DATA_INVALID:
|
|
1841
|
-
return "Error - Auth: Signature data invalid"
|
|
1842
|
-
case this.ERR_LDS_AUTH_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1843
|
-
return "Error - Auth: Unsupported digest algorithm"
|
|
1844
|
-
case this.ERR_LDS_AUTH_SIGNATURE_DATA_INCORRECT:
|
|
1845
|
-
return "Error - Auth: Signature data incorrect"
|
|
1846
|
-
case this.ERR_LDS_AUTH_ALGORITHM_PARAMETERS_NOT_DEFINED:
|
|
1847
|
-
return "Error - Auth: Algorithm parameters not defined"
|
|
1848
|
-
case this.ERR_LDS_AUTH_SIGNATURE_CHECK_FAILED:
|
|
1849
|
-
return "Error - Auth: Signature check failed"
|
|
1850
|
-
case this.ERR_LDS_DG_WRONG_TAH:
|
|
1851
|
-
return "Error - DG: Wrong Tag"
|
|
1852
|
-
case this.ERR_LDS_PACE_INFO_NOT_AVAILABLE:
|
|
1853
|
-
return "Error - PACE: Info Not Available"
|
|
1854
|
-
case this.ERR_LDS_PACE_SYMMETRIC_CYPHER_CANT_INITIALIZE:
|
|
1855
|
-
return "Error - PACE: Symmetric Cypher Cannot Initialize"
|
|
1856
|
-
case this.ERR_LDS_PACE_KEY_AGREEMENT_CANT_INITIALIZE:
|
|
1857
|
-
return "Error - PACE: Key Agreement Cannot Initialize"
|
|
1858
|
-
case this.ERR_LDS_PACE_EPHEMERAL_KEYS_CANT_CREATE:
|
|
1859
|
-
return "Error - PACE: Ephemeral Keys Cannot Create"
|
|
1860
|
-
case this.ERR_LDS_PACE_MAPPING_CANT_DECODE_NONCE:
|
|
1861
|
-
return "Error - PACE: Mapping Cannot Decode Nonce"
|
|
1862
|
-
case this.ERR_LDS_PACE_SHARED_SECRET_CANT_CREATE:
|
|
1863
|
-
return "Error - PACE: Shared Secret Cannot Create"
|
|
1864
|
-
case this.ERR_LDS_PACE_DOMAIN_PARAMS_UNSUPPORTED_FORMAT:
|
|
1865
|
-
return "Error - PACE: Domain Params Unsupported Format"
|
|
1866
|
-
case this.ERR_LDS_PACE_EPHEMERAL_KEYS_INCORRECT:
|
|
1867
|
-
return "Error - PACE: Ephemeral Keys Incorrect"
|
|
1868
|
-
case this.ERR_LDS_PACE_MAPPING_EPHEMERAL_KEYS_INCORRECT:
|
|
1869
|
-
return "Error - PACE: Mapping Ephemeral Keys Incorrect"
|
|
1870
|
-
case this.ERR_LDS_PACE_MAPPING_CANT_PERFORM:
|
|
1871
|
-
return "Error - PACE: Mapping Cannot Perform"
|
|
1872
|
-
case this.ERR_LDS_PACE_NON_MATCHING_AUTH_TOKENS:
|
|
1873
|
-
return "Error - PACE: Non-Matching Auth Tokens"
|
|
1874
|
-
case this.ERR_LDS_CA_CANT_FIND_PUBLIC_KEY:
|
|
1875
|
-
return "Error - CA: Cannot Find Public Key"
|
|
1876
|
-
case this.ERR_LDS_CA_CANT_FIND_INFO:
|
|
1877
|
-
return "Error - CA: Cannot Find Info"
|
|
1878
|
-
case this.ERR_LDS_CA_INCORRECT_VERSION:
|
|
1879
|
-
return "Error - CA: Incorrect Version"
|
|
1880
|
-
case this.ERR_LDS_CA_CANT_FIND_DOMAIN_PARAMETERS:
|
|
1881
|
-
return "Error - CA: Cannot Find Domain Parameters"
|
|
1882
|
-
case this.ERR_LDS_CA_KEY_AGREEMENT_CANT_INITIALIZE:
|
|
1883
|
-
return "Error - CA: Key Agreement Cannot Initialize"
|
|
1884
|
-
case this.ERR_LDS_CA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
1885
|
-
return "Error - CA: Public Key Unsupported Algorithm"
|
|
1886
|
-
case this.ERR_LDS_CA_EPHEMERAL_KEYS_CANT_CREATE:
|
|
1887
|
-
return "Error - CA: Ephemeral Keys Cannot Create"
|
|
1888
|
-
case this.ERR_LDS_CA_SHARED_SECRET_CANT_CREATE:
|
|
1889
|
-
return "Error - CA: Shared Secret Cannot Create"
|
|
1890
|
-
case this.ERR_LDS_CA_NON_MATCHING_AUTH_TOKENS:
|
|
1891
|
-
return "Error - CA: Non-Matching Auth Tokens"
|
|
1892
|
-
case this.ERR_LDS_TA_INCORRECT_VERSION:
|
|
1893
|
-
return "Error - TA: Incorrect Version"
|
|
1894
|
-
case this.ERR_LDS_TA_CANT_BUILD_CERTIFICATE_CHAIN:
|
|
1895
|
-
return "Error - TA: Cannot Build Certificate Chain"
|
|
1896
|
-
case this.ERR_LDS_TA_CANT_FIND_IS_PRIVATE_KEY:
|
|
1897
|
-
return "Error - TA: Cannot Find IS Private Key"
|
|
1898
|
-
case this.ERR_LDS_TA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
1899
|
-
return "Error - TA: Public Key Unsupported Algorithm"
|
|
1900
|
-
case this.ERR_LDS_TA_SIGNATURE_BUILDING_ERROR:
|
|
1901
|
-
return "Error - TA: Signature Building Error"
|
|
1902
|
-
case this.ERR_LDS_TA_INVALID_KEY_ALGORITHM_PARAMETERS:
|
|
1903
|
-
return "Error - TA: Invalid Key Algorithm Parameters"
|
|
1904
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
1905
|
-
return "Error - AA: Public Key Unsupported Algorithm"
|
|
1906
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_INCORRECT_DATA:
|
|
1907
|
-
return "Error - AA: Public Key Incorrect Data"
|
|
1908
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_INCORRECT_PARAMETERS:
|
|
1909
|
-
return "Error - AA: Public Key Incorrect Parameters"
|
|
1910
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_UNDEFINED_PARAMETERS:
|
|
1911
|
-
return "Error - AA: Public Key Undefined Parameters"
|
|
1912
|
-
case this.ERR_LDS_AA_SIGNATURE_INCORRECT_DATA:
|
|
1913
|
-
return "Error - AA: Signature Incorrect Data"
|
|
1914
|
-
case this.ERR_LDS_AA_UNSUPPORTED_RECOVERY_SCHEME:
|
|
1915
|
-
return "Error - AA: Unsupported recovery scheme"
|
|
1916
|
-
case this.ERR_LDS_AA_INCORRECT_TRAILER:
|
|
1917
|
-
return "Error - AA: Incorrect Trailer"
|
|
1918
|
-
case this.ERR_LDS_AA_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1919
|
-
return "Error - AA: Unsupported Digest Algorithm"
|
|
1920
|
-
case this.ERR_LDS_RI_SECTOR_KEY_CANT_FIND:
|
|
1921
|
-
return "Error - RI: Sector Key Cannot Find"
|
|
1922
|
-
case this.ERR_LDS_RI_SECTOR_KEY_INCORRECT_DATA:
|
|
1923
|
-
return "Error - RI: Sector Key Incorrect Data"
|
|
1924
|
-
case this.ERR_LDS_RI_SECTOR_KEY_INCOMPLETE_DATA:
|
|
1925
|
-
return "Error - RI: Sector Key Incomplete Data"
|
|
1926
|
-
case this.ERR_LDS_CV_CERTIFICATE_MISSING_MANDATORY_DATA_PK:
|
|
1927
|
-
return "Error - CV Certificate: Missing mandatory data PK"
|
|
1928
|
-
case this.ERR_LDS_CV_CERTIFICATE_PUBLIC_KEY_UNSUPPORTED:
|
|
1929
|
-
return "Error - CV Certificate: Public key unsupported"
|
|
1930
|
-
case this.ERR_LDS_CV_CERTIFICATE_CHAT_UNSUPPORTED_TERMINAL_TYPE:
|
|
1931
|
-
return "Error - CV Certificate: CHAT unsupported terminal type"
|
|
1932
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_UNSUPPORTED:
|
|
1933
|
-
return "Error - CV Certificate: Private key unsupported"
|
|
1934
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_INVALID_PARAMS:
|
|
1935
|
-
return "Error - CV Certificate: Private key invalid params"
|
|
1936
|
-
case this.ERR_LDS_CV_CERTIFICATE_INCORRECT_DATA:
|
|
1937
|
-
return "Error - CV Certificate: Incorrect data"
|
|
1938
|
-
case this.ERR_LDS_CV_CERTIFICATE_CPI_INCORRECT_DATA:
|
|
1939
|
-
return "Error - CV Certificate: CPI incorrect data"
|
|
1940
|
-
case this.ERR_LDS_CV_CERTIFICATE_CAR_INCORRECT_DATA:
|
|
1941
|
-
return "Error - CV Certificate: CAR incorrect data"
|
|
1942
|
-
case this.ERR_LDS_CV_CERTIFICATE_PUBLIC_KEY_INCORRECT_DATA:
|
|
1943
|
-
return "Error - CV Certificate: Public key incorrect data"
|
|
1944
|
-
case this.ERR_LDS_CV_CERTIFICATE_CHR_INCORRECT_DATA:
|
|
1945
|
-
return "Error - CV Certificate: CHR incorrect data"
|
|
1946
|
-
case this.ERR_LDS_CV_CERTIFICATE_CHAT_INCORRECT_DATA:
|
|
1947
|
-
return "Error - CV Certificate: CHAT incorrect data"
|
|
1948
|
-
case this.ERR_LDS_CV_CERTIFICATE_VALID_FROM_INCORRECT_DATA:
|
|
1949
|
-
return "Error - CV Certificate: Valid from incorrect data"
|
|
1950
|
-
case this.ERR_LDS_CV_CERTIFICATE_VALID_TO_INCORRECT_DATA:
|
|
1951
|
-
return "Error - CV Certificate: Valid to incorrect data"
|
|
1952
|
-
case this.ERR_LDS_CV_CERTIFICATE_EXTENSIONS_INCORRECT_DATA:
|
|
1953
|
-
return "Error - CV Certificate: Extensions incorrect data"
|
|
1954
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_INCORRECT_DATA:
|
|
1955
|
-
return "Error - CV Certificate: Private key incorrect data"
|
|
1956
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_MISSING:
|
|
1957
|
-
return "Error - CV Certificate: Private key missing"
|
|
1958
|
-
case this.ERR_LDS_BAP_SYMMETRIC_CYPHER_CANT_INITIALIZE:
|
|
1959
|
-
return "Error - BAP: Symmetric Cypher Cannot Initialize"
|
|
1960
|
-
case this.ERR_LDS_DG_CONTENTS_UNEXPECTED_DATA:
|
|
1961
|
-
return "Error - DG: Contents unexpected data"
|
|
1962
|
-
case this.ERR_LDS_ICAO_SIGNED_DATA_SIGNER_INFOS_EMPTY:
|
|
1963
|
-
return "Error - ICAO Signed data: Signer info empty"
|
|
1964
|
-
case this.ERR_LDS_PACE_CAM_DATA_CANT_VERIFY:
|
|
1965
|
-
return "Error - PACE: CAM data cannot verify"
|
|
1966
|
-
case this.ERR_LDS_PACE_CAM_DATA_INCORRECT:
|
|
1967
|
-
return "Error - PACE: CAM data incorrect"
|
|
1968
|
-
case this.ERR_LDS_PACE_CAM_DATA_NON_MATCHING:
|
|
1969
|
-
return "Error - PACE: CAM data non-matching"
|
|
1970
|
-
case this.ERR_LDS_PACE_IM_RANDOM_MAPPING_FAILED:
|
|
1971
|
-
return "Error - PACE: Random mapping failed"
|
|
1972
|
-
case this.ERR_LDS_PACE_IM_SCHEME_INCORRECT:
|
|
1973
|
-
return "Error - PACE: IM scheme incorrect"
|
|
1974
|
-
case this.ERR_LDS_VDS_ISSUING_COUNTRY_INCORRECT_DATA:
|
|
1975
|
-
return "Error - VDS: Issuing country incorrect data"
|
|
1976
|
-
case this.ERR_LDS_VDS_ISSUING_COUNTRY_SIZE:
|
|
1977
|
-
return "Error - VDS: Issuing country size"
|
|
1978
|
-
case this.ERR_LDS_VDS_NC_INCORRECT_DATA:
|
|
1979
|
-
return "Error - VDS: Incorrect data"
|
|
1980
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_CERTIFICATE:
|
|
1981
|
-
return "Error - VDS: Missing or incorrect certificate"
|
|
1982
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_DATA:
|
|
1983
|
-
return "Error - VDS: Missing or incorrect data"
|
|
1984
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_HEADER:
|
|
1985
|
-
return "Error - VDS: Missing or incorrect header"
|
|
1986
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_ISSUING_COUNTRY:
|
|
1987
|
-
return "Error - VDS: Missing or incorrect issuing country"
|
|
1988
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_MESSAGE:
|
|
1989
|
-
return "Error - VDS: Missing or incorrect message"
|
|
1990
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIGNATURE:
|
|
1991
|
-
return "Error - VDS: Missing or incorrect signature"
|
|
1992
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_ALGORITHM:
|
|
1993
|
-
return "Error - VDS: Missing or incorrect signature algorithm"
|
|
1994
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_VALUE:
|
|
1995
|
-
return "Error - VDS: Missing or incorrect signature value"
|
|
1996
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_TYPE:
|
|
1997
|
-
return "Error - VDS: Missing or incorrect type"
|
|
1998
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_VERSION:
|
|
1999
|
-
return "Error - VDS: Missing or incorrect version"
|
|
2000
|
-
case this.ERR_LDS_VDS_SIGNATURE_INCORRECT_DATA:
|
|
2001
|
-
return "Error - VDS: Signature incorrect data"
|
|
2002
|
-
case this.ERR_LDS_VDS_SIGNER_CERTIFICATE_DATA:
|
|
2003
|
-
return "Error - VDS: Signature certificate data"
|
|
2004
|
-
case this.ERR_LDS_VDS_SIGNER_CERTIFICATE_SIZE:
|
|
2005
|
-
return "Error - VDS: Signature certificate size"
|
|
2006
|
-
case this.ERR_LDS_VDS_UNSUPPORTED_VERSION:
|
|
2007
|
-
return "Error - VDS: Unsupported version"
|
|
2008
|
-
default:
|
|
2009
|
-
return value
|
|
2010
|
-
}
|
|
2011
|
-
}
|
|
2012
1463
|
}
|
|
2013
1464
|
|
|
2014
1465
|
const eRFID_CertificateType = {
|
|
@@ -2071,7 +1522,10 @@ const eRPRM_ResultType = {
|
|
|
2071
1522
|
RFID_RESULT_TYPE_RFID_ORIGINAL_GRAPHICS: 105,
|
|
2072
1523
|
RPRM_RESULT_TYPE_BARCODE_POSITION: 62,
|
|
2073
1524
|
RPRM_RESULT_TYPE_MRZ_POSITION: 61,
|
|
1525
|
+
RPRM_RESULT_TYPE_LIVE_PORTRAIT: 32,
|
|
2074
1526
|
RPRM_RESULT_TYPE_STATUS: 33,
|
|
1527
|
+
RPRM_RESULT_TYPE_PORTRAIT_COMPARISON: 34,
|
|
1528
|
+
RPRM_RESULT_TYPE_EXT_PORTRAIT: 35,
|
|
2075
1529
|
}
|
|
2076
1530
|
|
|
2077
1531
|
const CameraTypes = {
|
|
@@ -2169,6 +1623,41 @@ const eRFID_AuthenticationProcedureType = {
|
|
|
2169
1623
|
aptGeneral: 3,
|
|
2170
1624
|
}
|
|
2171
1625
|
|
|
1626
|
+
const DocumentReaderErrorCodes = {
|
|
1627
|
+
INITIALIZATION_CORE_ABSENT: 0,
|
|
1628
|
+
INITIALIZATION_FAILED: 1,
|
|
1629
|
+
INCORRECT_SCENARIO: 2,
|
|
1630
|
+
NO_RESULT: 3,
|
|
1631
|
+
REMOVE_DATABASE: 4,
|
|
1632
|
+
FETCHING_DATABASE: 5,
|
|
1633
|
+
DB_ID_NOT_FOUND: 6,
|
|
1634
|
+
DB_DESCRIPTION_NOT_FOUND: 7,
|
|
1635
|
+
SAVE_DB: 8,
|
|
1636
|
+
DOWNLOAD_DB_INCORRECT_CHECKSUM: 9,
|
|
1637
|
+
DB_DOWNLOAD: 10,
|
|
1638
|
+
LICENSE_ABSENT_OR_CORRUPTED: 13,
|
|
1639
|
+
LICENSE_INVALID_DATE: 14,
|
|
1640
|
+
LICENSE_INVALID_VERSION: 15,
|
|
1641
|
+
LICENSE_INVALID_DEVICE_ID: 16,
|
|
1642
|
+
LICENSE_INVALID_SYSTEM_OR_APP_ID: 17,
|
|
1643
|
+
LICENSE_NO_CAPABILITIES: 18,
|
|
1644
|
+
LICENSE_NO_AUTHENTICITY: 19,
|
|
1645
|
+
RECORD_PROCESS_INVALID_OUTPUT_URL: 20,
|
|
1646
|
+
LICENSE_ONLINE_ERROR: 21,
|
|
1647
|
+
LICENSE_NO_DATABASE: 22,
|
|
1648
|
+
LICENSE_DATABASE_INCORRECT: 23,
|
|
1649
|
+
INVALID_TCC_PARAMS: 24,
|
|
1650
|
+
RFID_IN_PROGRESS: 25,
|
|
1651
|
+
NATIVE_JAVA_EXCEPTION: 1000,
|
|
1652
|
+
BACKEND_ONLINE_PROCESSING: 303,
|
|
1653
|
+
WRONG_INPUT: 400,
|
|
1654
|
+
STATE_EXCEPTION: 500,
|
|
1655
|
+
BLE_EXCEPTION: 600,
|
|
1656
|
+
FEATURE_BLUETOOTH_LE_NOT_SUPPORTED: 601,
|
|
1657
|
+
APP_BACKGROUND: 700,
|
|
1658
|
+
ONLINE_PROCESSING_WRONG_INPUT: 800,
|
|
1659
|
+
}
|
|
1660
|
+
|
|
2172
1661
|
const ScenarioIdentifier = {
|
|
2173
1662
|
SCENARIO_MRZ: "Mrz",
|
|
2174
1663
|
SCENARIO_BARCODE: "Barcode",
|
|
@@ -2372,6 +1861,7 @@ const eCheckDiagnose = {
|
|
|
2372
1861
|
BARCODE_DATA_FORMAT_ERROR: 141,
|
|
2373
1862
|
BARCODE_SIZE_PARAMS_ERROR: 142,
|
|
2374
1863
|
NOT_ALL_BARCODES_READ: 143,
|
|
1864
|
+
GLARES_IN_BARCODE_AREA: 144,
|
|
2375
1865
|
PORTRAIT_COMPARISON_PORTRAITS_DIFFER: 150,
|
|
2376
1866
|
PORTRAIT_COMPARISON_NO_SERVICE_REPLY: 151,
|
|
2377
1867
|
PORTRAIT_COMPARISON_SERVICE_ERROR: 152,
|
|
@@ -2401,8 +1891,9 @@ const eCheckDiagnose = {
|
|
|
2401
1891
|
OCR_QUALITY_INVALID_FONT: 221,
|
|
2402
1892
|
OCR_QUALITY_INVALID_BACKGROUND: 222,
|
|
2403
1893
|
LAS_INK_INVALID_LINES_FREQUENCY: 230,
|
|
2404
|
-
LAST_DIAGNOSE_VALUE: 250,
|
|
2405
1894
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED: 240,
|
|
1895
|
+
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND: 241,
|
|
1896
|
+
LAST_DIAGNOSE_VALUE: 250,
|
|
2406
1897
|
}
|
|
2407
1898
|
|
|
2408
1899
|
const RFIDDelegate = {
|
|
@@ -2662,449 +2153,6 @@ const eLDS_ParsingNotificationCodes = {
|
|
|
2662
2153
|
NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_CANT_FIND_CSCA: 0x92000117,
|
|
2663
2154
|
NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_REVOKED: 0x92000118,
|
|
2664
2155
|
NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_SIGNATURE_INVALID: 0x92000119,
|
|
2665
|
-
|
|
2666
|
-
getTranslation: function (value) {
|
|
2667
|
-
switch (value) {
|
|
2668
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_VERSION:
|
|
2669
|
-
return "Notification - ASN certificate: Incorrect version"
|
|
2670
|
-
case this.NTF_LDS_ASN_CERTIFICATE_NON_MATCHING_SIGNATURE_ALGORITHM:
|
|
2671
|
-
return "Notification - ASN certificate: Non-matching signature algorithm"
|
|
2672
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_TIME_CODING:
|
|
2673
|
-
return "Notification - ASN certificate: Incorrect time coding"
|
|
2674
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_USE_OF_GENERALIZED_TIME:
|
|
2675
|
-
return "Notification - ASN certificate: Incorrect use of generalized time"
|
|
2676
|
-
case this.NTF_LDS_ASN_CERTIFICATE_EMPTY_ISSUER:
|
|
2677
|
-
return "Notification - ASN certificate: Empty issuer"
|
|
2678
|
-
case this.NTF_LDS_ASN_CERTIFICATE_EMPTY_SUBJECT:
|
|
2679
|
-
return "Notification - ASN certificate: Empty subject"
|
|
2680
|
-
case this.NTF_LDS_ASN_CERTIFICATE_UNSUPPORTED_CRITICAL_EXTENSION:
|
|
2681
|
-
return "Notification - ASN certificate: Unsupported critical extension"
|
|
2682
|
-
case this.NTF_LDS_ASN_CERTIFICATE_FORCED_DEFAULT_CSCA_ROLE:
|
|
2683
|
-
return "Notification - ASN certificate: Forced default CSCA role"
|
|
2684
|
-
case this.NTF_LDS_ASN_CERTIFICATE_FORCED_DEFAULT_DS_ROLE:
|
|
2685
|
-
return "Notification - ASN certificate: Forced Default DS role"
|
|
2686
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_ISSUER_SUBJECT_DS:
|
|
2687
|
-
return "Notification - ASN certificate: Incorrect issuer subject DS"
|
|
2688
|
-
case this.NTF_LDS_ASN_CERTIFICATE_DUPLICATING_EXTENSIONS:
|
|
2689
|
-
return "Notification - ASN certificate: Duplicating extensions"
|
|
2690
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_VERSION_MISSED:
|
|
2691
|
-
return "Notification - ICAO certificate: Version missed"
|
|
2692
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_VERSION_INCORRECT:
|
|
2693
|
-
return "Notification - ICAO certificate: Version incorrect"
|
|
2694
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_COUNTRY_MISSED:
|
|
2695
|
-
return "Notification - ICAO certificate: Issuer country missed"
|
|
2696
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_COMMON_NAME_MISSED:
|
|
2697
|
-
return "Notification - ICAO certificate: Issuer common name missed"
|
|
2698
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_COUNTRY_NON_COMPLIANT:
|
|
2699
|
-
return "Notification - ICAO certificate: Issuer country non-compliant"
|
|
2700
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COUNTRY_MISSED:
|
|
2701
|
-
return "Notification - ICAO certificate: Subject country missed"
|
|
2702
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COMMON_NAME_MISSED:
|
|
2703
|
-
return "Notification - ICAO certificate: Subject common name missed"
|
|
2704
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COUNTRY_NON_COMPLIANT:
|
|
2705
|
-
return "Notification - ICAO certificate: Subject country non-compliant"
|
|
2706
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_USING_NON_COMPLIANT_DATA:
|
|
2707
|
-
return "Notification - ICAO certificate: Using non-compliant data"
|
|
2708
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_UNSUPPORTED_SIGNATURE_ALGORITHM:
|
|
2709
|
-
return "Notification - ICAO certificate: Unsupported signature algorithm"
|
|
2710
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_UNSUPPORTED_PUBLIC_KEY_ALGORITHM:
|
|
2711
|
-
return "Notification - ICAO certificate: Unsupported public key algorithm"
|
|
2712
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_MISSED_EXTENSIONS:
|
|
2713
|
-
return "Notification - ICAO certificate: Missed extensions"
|
|
2714
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_VALIDITY:
|
|
2715
|
-
return "Notification - ICAO certificate: Validity"
|
|
2716
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_USING_NON_COMPLIANT_DATA:
|
|
2717
|
-
return "Notification - ICAO certificate extension: Using non-compliant data"
|
|
2718
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_KEY_USAGE_MISSED:
|
|
2719
|
-
return "Notification - ICAO certificate extension: Key usage missed"
|
|
2720
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_KEY_USAGE_NOT_CRITICAL:
|
|
2721
|
-
return "Notification - ICAO certificate extension: Key usage not critical"
|
|
2722
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_KEY_USAGE_INCORRECT_DATA:
|
|
2723
|
-
return "Notification - ICAO certificate extension: Key usage incorrect data"
|
|
2724
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_MISSED:
|
|
2725
|
-
return "Notification - ICAO certificate extension: Basic constraints missed"
|
|
2726
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_INCORRECT_USAGE1:
|
|
2727
|
-
return "Notification - ICAO certificate extension: Basic constraints incorrect usage 1"
|
|
2728
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_INCORRECT_USAGE2:
|
|
2729
|
-
return "Notification - ICAO certificate extension: Basic constraints incorrect usage 2"
|
|
2730
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_NOT_CRITICAL:
|
|
2731
|
-
return "Notification - ICAO certificate extension: Basic constraints not critical"
|
|
2732
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_INCORRECT_DATA:
|
|
2733
|
-
return "Notification - ICAO certificate extension: Basic constraints incorrect data"
|
|
2734
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_PATH_LEN_C_MISSED:
|
|
2735
|
-
return "Notification - ICAO certificate extension: Basic constraints path LenC missed"
|
|
2736
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_PATH_LEN_C_INCORRECT:
|
|
2737
|
-
return "Notification - ICAO certificate extension: Basic constraints path LenC incorrect"
|
|
2738
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_EXT_KEY_USAGE_NOT_CRITICAL:
|
|
2739
|
-
return "Notification - ICAO certificate extension: Ext key usage not critical"
|
|
2740
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_EXT_KEY_USAGE_INCORRECT_USAGE:
|
|
2741
|
-
return "Notification - ICAO certificate extension: Ext key usage incorrect usage"
|
|
2742
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_EXT_KEY_USAGE_INCORRECT_DATA:
|
|
2743
|
-
return "Notification - ICAO certificate extension: Ext key usage incorrect data"
|
|
2744
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_AUTH_KEY_ID_MISSED:
|
|
2745
|
-
return "Notification - ICAO certificate extension Auth key: ID missed"
|
|
2746
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_AUTH_KEY_ID_INCORRECT_DATA:
|
|
2747
|
-
return "Notification - ICAO certificate extension Auth key: Incorrect data"
|
|
2748
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_AUTH_KEY_ID_KEY_ID_MISSED:
|
|
2749
|
-
return "Notification - ICAO certificate extension Auth key: Key ID missed"
|
|
2750
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_KEY_ID_MISSED:
|
|
2751
|
-
return "Notification - ICAO certificate extension: Subject key ID missed"
|
|
2752
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_KEY_ID_INCORRECT_DATA:
|
|
2753
|
-
return "Notification - ICAO certificate extension: Subject key ID incorrect data"
|
|
2754
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_PRIVATE_KEY_UP_MISSED:
|
|
2755
|
-
return "Notification - ICAO certificate extension: Private key UP missed"
|
|
2756
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_PRIVATE_KEY_UP_INCORRECT_DATA:
|
|
2757
|
-
return "Notification - ICAO certificate extension: Private key UP incorrect data"
|
|
2758
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_PRIVATE_KEY_UP_EMPTY:
|
|
2759
|
-
return "Notification - ICAO certificate extension: Private key UP empty"
|
|
2760
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_MISSED:
|
|
2761
|
-
return "Notification - ICAO certificate extension: Subject alt name missed"
|
|
2762
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_INCORRECT_DATA:
|
|
2763
|
-
return "Notification - ICAO certificate extension: Subject alt name incorrect data"
|
|
2764
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_EMPTY:
|
|
2765
|
-
return "Notification - ICAO certificate extension: Subject alt name empty"
|
|
2766
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_NON_COMPLIANT:
|
|
2767
|
-
return "Notification - ICAO certificate extension: Subject alt name non-compliant"
|
|
2768
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_CRITICAL:
|
|
2769
|
-
return "Notification - ICAO certificate extension: Subject alt name critical"
|
|
2770
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_DN_EMPTY:
|
|
2771
|
-
return "Notification - ICAO certificate extension: Subject alt name DN empty"
|
|
2772
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_DN_INCORRECT:
|
|
2773
|
-
return "Notification - ICAO certificate extension: Subject alt name DN incorrect"
|
|
2774
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_DN_NON_COMPLIANT:
|
|
2775
|
-
return "Notification - ICAO certificate extension: Subject alt name DN non-compliant"
|
|
2776
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_MISSED:
|
|
2777
|
-
return "Notification - ICAO certificate extension: Issuer alt name missed"
|
|
2778
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_INCORRECT_DATA:
|
|
2779
|
-
return "Notification - ICAO certificate extension: Issuer alt name incorrect data"
|
|
2780
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_EMPTY:
|
|
2781
|
-
return "Notification - ICAO certificate extension: Issuer alt name empty"
|
|
2782
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_NON_COMPLIANT:
|
|
2783
|
-
return "Notification - ICAO certificate extension: Issuer alt name non-compliant"
|
|
2784
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_DN_EMPTY:
|
|
2785
|
-
return "Notification - ICAO certificate extension: Issuer alt name DN empty"
|
|
2786
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_DN_INCORRECT:
|
|
2787
|
-
return "Notification - ICAO certificate extension: Issuer alt name DN incorrect"
|
|
2788
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_DN_NON_COMPLIANT:
|
|
2789
|
-
return "Notification - ICAO certificate extension: Issuer alt name DN non-compliant"
|
|
2790
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_MISSED:
|
|
2791
|
-
return "Notification - ICAO certificate extension Doc type list: Missed"
|
|
2792
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_INCORRECT_DATA:
|
|
2793
|
-
return "Notification - ICAO certificate extension Doc type list: Incorrect data"
|
|
2794
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_VERSION:
|
|
2795
|
-
return "Notification - ICAO certificate extension Doc type list: Version"
|
|
2796
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_DOC_TYPES:
|
|
2797
|
-
return "Notification - ICAO certificate extension Doc type list: Doc types"
|
|
2798
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_DOC_TYPES_EMPTY:
|
|
2799
|
-
return "Notification - ICAO certificate extension Doc type list: Doc types empty"
|
|
2800
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CERT_POLICIES_INCORRECT_DATA:
|
|
2801
|
-
return "Notification - ICAO certificate extension: Dert policies incorrect data"
|
|
2802
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CERT_POLICIES_EMPTY:
|
|
2803
|
-
return "Notification - ICAO certificate extension: Cert policies empty"
|
|
2804
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CERT_POLICIES_POLICY_ID_MISSED:
|
|
2805
|
-
return "Notification - ICAO certificate extension: Cert policies policy ID missed"
|
|
2806
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_MISSED:
|
|
2807
|
-
return "Notification - ICAO certificate extension: CRL dist point missed"
|
|
2808
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_INCORRECT_DATA:
|
|
2809
|
-
return "Notification - ICAO certificate extension: CRL dist point incorrect data"
|
|
2810
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_EMPTY:
|
|
2811
|
-
return "Notification - ICAO certificate extension: CRL dist point empty"
|
|
2812
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_POINT_MISSED:
|
|
2813
|
-
return "Notification - ICAO certificate extension: CRL dist point point missed"
|
|
2814
|
-
case this.NTF_LDS_ICAO_COM_LDS_VERSION_INCORRECT:
|
|
2815
|
-
return "Notification - ICAO COM: LDS version incorrect"
|
|
2816
|
-
case this.NTF_LDS_ICAO_COM_LDS_VERSION_MISSING:
|
|
2817
|
-
return "Notification - ICAO COM: LDS version missing"
|
|
2818
|
-
case this.NTF_LDS_ICAO_COM_UNICODE_VERSION_INCORRECT:
|
|
2819
|
-
return "Notification - ICAO COM: Unicode version incorrect"
|
|
2820
|
-
case this.NTF_LDS_ICAO_COM_UNICODE_VERSION_MISSING:
|
|
2821
|
-
return "Notification - ICAO COM: Unicode version missing"
|
|
2822
|
-
case this.NTF_LDS_ICAO_COM_DGPM_INCORRECT:
|
|
2823
|
-
return "Notification - ICAO COM: DGPM incorrect"
|
|
2824
|
-
case this.NTF_LDS_ICAO_COM_DGPM_MISSING:
|
|
2825
|
-
return "Notification - ICAO COM: DGPM missing"
|
|
2826
|
-
case this.NTF_LDS_ICAO_COM_DGPM_UNEXPECTED:
|
|
2827
|
-
return "Notification - ICAO COM: DGPM unexpected"
|
|
2828
|
-
case this.NTF_LDS_ICAO_APPLICATION_LDS_VERSION_UNSUPPORTED:
|
|
2829
|
-
return "Notification - ICAO application: LDS version unsupported"
|
|
2830
|
-
case this.NTF_LDS_ICAO_APPLICATION_UNICODE_VERSION_UNSUPPORTED:
|
|
2831
|
-
return "Notification - ICAO application: Unicode version unsupported"
|
|
2832
|
-
case this.NTF_LDS_ICAO_APPLICATION_LDS_VERSION_INCONSISTENT:
|
|
2833
|
-
return "Notification - ICAO application: LDS version inconsistent"
|
|
2834
|
-
case this.NTF_LDS_ICAO_APPLICATION_UNICODE_VERSION_INCONSISTENT:
|
|
2835
|
-
return "Notification - ICAO application: Unicode version inconsistent"
|
|
2836
|
-
case this.NTF_LDS_ASN_SIGNED_DATA_OID_INCORRECT:
|
|
2837
|
-
return "Notification - ASN signed data: OID incorrect"
|
|
2838
|
-
case this.NTF_LDS_ASN_SIGNED_DATA_VERSION_INCORRECT:
|
|
2839
|
-
return "Notification - ASN signed data: Version incorrect"
|
|
2840
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_VERSION_INCORRECT:
|
|
2841
|
-
return "Notification - ICAO signed data: Version incorrect"
|
|
2842
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_DIGEST_ALGORITHMS_EMPTY:
|
|
2843
|
-
return "Notification - ICAO signed data: Digest algorithms empty"
|
|
2844
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_DIGEST_ALGORITHMS_UNSUPPORTED:
|
|
2845
|
-
return "Notification - ICAO signed data: Digest algorithms unsupported"
|
|
2846
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_SIGNER_INFOS_MULTIPLE_ENTRIES:
|
|
2847
|
-
return "Notification - ICAO signed data: Signer infos multiple entries"
|
|
2848
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_CERTIFICATES_MISSED:
|
|
2849
|
-
return "Notification - ICAO signed data: Certificates missed"
|
|
2850
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_CERTIFICATES_EMPTY:
|
|
2851
|
-
return "Notification - ICAO signed data: Certificates empty"
|
|
2852
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_CRLS_INCORRECT_USAGE:
|
|
2853
|
-
return "Notification - ICAO signed data: CRLs incorrect usage"
|
|
2854
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_INCORRECT_CONTENT_OID:
|
|
2855
|
-
return "Notification - ICAO LDS object: Incorrect content OID"
|
|
2856
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_DG_NUMBER_INCORRECT:
|
|
2857
|
-
return "Notification - ICAO LDS object: DG number incorrect"
|
|
2858
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_DG_HASH_MISSING:
|
|
2859
|
-
return "Notification - ICAO LDS object: DG hash missing"
|
|
2860
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_DG_HASH_EXTRA:
|
|
2861
|
-
return "Notification - ICAO LDS object: DG hash extra"
|
|
2862
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_VERSION_INCORRECT:
|
|
2863
|
-
return "Notification - ICAO LDS object: Version incorrect"
|
|
2864
|
-
case this.NTF_LDS_ICAO_MASTER_LIST_VERSION_INCORRECT:
|
|
2865
|
-
return "Notification - ICAO master list: Version incorrect"
|
|
2866
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_VERSION_INCORRECT:
|
|
2867
|
-
return "Notification - ASN signer info: Version incorrect"
|
|
2868
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SID_INCORRECT_CHOICE:
|
|
2869
|
-
return "Notification - ASN signer info: SID incorrect choice"
|
|
2870
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SID_DIGEST_ALGORITHM_NOT_LISTED:
|
|
2871
|
-
return "Notification - ASN signer info: SID digest algorithm not listed"
|
|
2872
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_MESSAGE_DIGEST_ATTR_MISSING:
|
|
2873
|
-
return "Notification - ASN signer info: Message digest attr missing"
|
|
2874
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_MESSAGE_DIGEST_ATTR_DATA:
|
|
2875
|
-
return "Notification - ASN signer info: Message digest attr data"
|
|
2876
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_MESSAGE_DIGEST_ATTR_Value:
|
|
2877
|
-
return "Notification - ASN signer info: Message digest attr value"
|
|
2878
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_CONTENT_TYPE_ATTR_MISSING:
|
|
2879
|
-
return "Notification - ASN signer info: Content type attr missing"
|
|
2880
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_CONTENT_TYPE_ATTR_DATA:
|
|
2881
|
-
return "Notification - ASN signer info: Content type attr data"
|
|
2882
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_CONTENT_TYPE_ATTR_VALUE:
|
|
2883
|
-
return "Notification - ASN signer info: Content type attr value"
|
|
2884
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SIGNING_TIME_ATTR_MISSING:
|
|
2885
|
-
return "Notification - ASN signer info: Signing time attr missing"
|
|
2886
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SIGNING_TIME_ATTR_DATA:
|
|
2887
|
-
return "Notification - ASN signer info: Signing time attr data"
|
|
2888
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SIGNING_TIME_ATTR_VALUE:
|
|
2889
|
-
return "Notification - ASN signer info: Signing time attr value"
|
|
2890
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_VALIDITY:
|
|
2891
|
-
return "Notification - Auth signer info: Certificate validity"
|
|
2892
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_ROOT_IS_NOT_TRUSTED:
|
|
2893
|
-
return "Notification - Auth signer info: Certificate root is not trusted"
|
|
2894
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_CANT_FIND_CSCA:
|
|
2895
|
-
return "Notification - Auth signer info: Certificate cannot find CSCA"
|
|
2896
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_REVOKED:
|
|
2897
|
-
return "Notification - Auth signer info: Certificate revoked"
|
|
2898
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_SIGNATURE_INVALID:
|
|
2899
|
-
return "Notification - Auth signer info: Certificate signature invalid"
|
|
2900
|
-
case this.NTF_LDS_UNSUPPORTED_IMAGE_FORMAT:
|
|
2901
|
-
return "Notification: Unsupported image format"
|
|
2902
|
-
case this.NTF_LDS_MRZ_DOCUMENT_TYPE_UNKNOWN:
|
|
2903
|
-
return "Notification - MRZ: Document type unknown"
|
|
2904
|
-
case this.NTF_LDS_MRZ_ISSUING_STATE_SYNTAX_ERROR:
|
|
2905
|
-
return "Notification - MRZ: Issuing state syntax error"
|
|
2906
|
-
case this.NTF_LDS_MRZ_NAME_IS_VOID:
|
|
2907
|
-
return "Notification - MRZ: Name is void"
|
|
2908
|
-
case this.NTF_LDS_MRZ_NUMBER_INCORRECT_CHECKSUM:
|
|
2909
|
-
return "Notification - MRZ: Number incorrect checksum"
|
|
2910
|
-
case this.NTF_LDS_MRZ_NATIONALITY_SYNTAX_ERROR:
|
|
2911
|
-
return "Notification - MRZ: Nationality syntax error"
|
|
2912
|
-
case this.NTF_LDS_MRZ_DOB_SYNTAX_ERROR:
|
|
2913
|
-
return "Notification - MRZ: DOB syntax error"
|
|
2914
|
-
case this.NTF_LDS_MRZ_DOB_ERROR:
|
|
2915
|
-
return "Notification - MRZ: DOB error"
|
|
2916
|
-
case this.NTF_LDS_MRZ_DOB_INCORRECT_CHECKSUM:
|
|
2917
|
-
return "Notification - MRZ: DOB incorrect checksum"
|
|
2918
|
-
case this.NTF_LDS_MRZ_SEX_INCORRECT:
|
|
2919
|
-
return "Notification - MRZ: Sex incorrect"
|
|
2920
|
-
case this.NTF_LDS_MRZ_DOE_SYNTAX_ERROR:
|
|
2921
|
-
return "Notification - MRZ: DOE syntax error"
|
|
2922
|
-
case this.NTF_LDS_MRZ_DOE_ERROR:
|
|
2923
|
-
return "Notification - MRZ: DOE error"
|
|
2924
|
-
case this.NTF_LDS_MRZ_DOE_INCORRECT_CHECKSUM:
|
|
2925
|
-
return "Notification - MRZ: DOE incorrect checksum"
|
|
2926
|
-
case this.NTF_LDS_MRZ_OPTIONAL_DATA_INCORRECT_CHECKSUM:
|
|
2927
|
-
return "Notification - MRZ: Optional data incorrect checksum"
|
|
2928
|
-
case this.NTF_LDS_MRZ_INCORRECT_CHECKSUM:
|
|
2929
|
-
return "Notification - MRZ: Incorrect checksum"
|
|
2930
|
-
case this.NTF_LDS_MRZ_INCORRECT:
|
|
2931
|
-
return "Notification - MRZ: Incorrect"
|
|
2932
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_OWNER_MISSING:
|
|
2933
|
-
return "Notification - Biometrics: Format owner missing"
|
|
2934
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_OWNER_INCORRECT:
|
|
2935
|
-
return "Notification - Biometrics: Format owner incorrect"
|
|
2936
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_TYPE_MISSING:
|
|
2937
|
-
return "Notification - Biometrics: Format type missing"
|
|
2938
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_TYPE_INCORRECT:
|
|
2939
|
-
return "Notification - Biometrics: Format type incorrect"
|
|
2940
|
-
case this.NTF_LDS_BIOMETRICS_TYPE_INCORRECT:
|
|
2941
|
-
return "Notification - Biometrics: Type incorrect"
|
|
2942
|
-
case this.NTF_LDS_BIOMETRICS_SUB_TYPE_MISSING:
|
|
2943
|
-
return "Notification - Biometrics: Subtype missing"
|
|
2944
|
-
case this.NTF_LDS_BIOMETRICS_SUB_TYPE_INCORRECT:
|
|
2945
|
-
return "Notification - Biometrics: Subtype incorrect"
|
|
2946
|
-
case this.NTF_LDS_BIOMETRICS_BDB_IMAGE_MISSING:
|
|
2947
|
-
return "Notification - Biometrics: BDB image missing"
|
|
2948
|
-
case this.NTF_LDS_BIOMETRICS_BDB_FORMAT_ID_INCORRECT:
|
|
2949
|
-
return "Notification - Biometrics: BDB format ID incorrect"
|
|
2950
|
-
case this.NTF_LDS_BIOMETRICS_BDB_VERSION_INCORRECT:
|
|
2951
|
-
return "Notification - Biometrics: BDB version incorrect"
|
|
2952
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_LENGTH_INCORRECT:
|
|
2953
|
-
return "Notification - Biometrics: BDB data length incorrect"
|
|
2954
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_GENDER:
|
|
2955
|
-
return "Notification - Biometrics: BDB Data Gender"
|
|
2956
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_EYE_COLOR:
|
|
2957
|
-
return "Notification - Biometrics: BDB Data Eye Color"
|
|
2958
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_HAIR_COLOR:
|
|
2959
|
-
return "Notification - Biometrics: BDB Data Hair Color"
|
|
2960
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_YAW:
|
|
2961
|
-
return "Notification - Biometrics: BDB Data Pose Angle Yaw"
|
|
2962
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_PITCH:
|
|
2963
|
-
return "Notification - Biometrics: BDB Data Pose Angle Pitch"
|
|
2964
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_ROLL:
|
|
2965
|
-
return "Notification - Biometrics: BDB Data Pose Angle Roll"
|
|
2966
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_U_YAW:
|
|
2967
|
-
return "Notification - Biometrics: BDB Data Pose Angle U Yaw"
|
|
2968
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_U_PITCH:
|
|
2969
|
-
return "Notification - Biometrics: BDB Data Pose Angle U Pitch"
|
|
2970
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_U_ROLL:
|
|
2971
|
-
return "Notification - Biometrics: BDB Data Pose Angle U Roll"
|
|
2972
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_FACE_IMAGE_TYPE:
|
|
2973
|
-
return "Notification - Biometrics: BDB Data Face Image Type"
|
|
2974
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_IMAGE_DATA_TYPE:
|
|
2975
|
-
return "Notification - Biometrics: BDB Data Image Data Type"
|
|
2976
|
-
case this.NTF_LDS_SI_PACE_INFO_UNSUPPORTED_STD_PARAMETERS:
|
|
2977
|
-
return "Notification - SI: PACE Info Unsupported Std Parameters"
|
|
2978
|
-
case this.NTF_LDS_SI_PACE_INFO_DEPRECATED_VERSION:
|
|
2979
|
-
return "Notification - SI: PACE Info Deprecated Version"
|
|
2980
|
-
case this.NTF_LDS_SI_PACE_DOMAIN_PARAMS_USING_STD_REF:
|
|
2981
|
-
return "Notification - SI: PACE Domain Params Using Std Ref"
|
|
2982
|
-
case this.NTF_LDS_SI_PACE_DOMAIN_PARAMS_UNSUPPORTED_ALGORITHM:
|
|
2983
|
-
return "Notification - SI: PACE Domain Params Unsupported Algorithm"
|
|
2984
|
-
case this.NTF_LDS_SI_CA_INFO_INCORRECT_VERSION:
|
|
2985
|
-
return "Notification - SI: CA Info Incorrect Version"
|
|
2986
|
-
case this.NTF_LDS_SI_CA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
2987
|
-
return "Notification - SI: CA PublicKey Unsupported Algorithm"
|
|
2988
|
-
case this.NTF_LDS_SI_CA_DOMAIN_PARAMS_UNSUPPORTED_ALGORITHM:
|
|
2989
|
-
return "Notification - SI: CA Domain Params Unsupported Algorithm"
|
|
2990
|
-
case this.NTF_LDS_SI_TA_INFO_INCORRECT_VERSION:
|
|
2991
|
-
return "Notification - SI: TA Info Incorrect Version"
|
|
2992
|
-
case this.NTF_LDS_SI_TA_INFO_FILE_ID_FOR_VERSION2:
|
|
2993
|
-
return "Notification - SI: TA Info File ID For Version 2"
|
|
2994
|
-
case this.NTF_LDS_SI_EID_SECURITY_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
2995
|
-
return "Notification - SI: eID Security Unsupported Digest Algorithm"
|
|
2996
|
-
case this.NTF_LDS_SI_RI_INFO_INCORRECT_VERSION:
|
|
2997
|
-
return "Notification - SI: RI info incorrect version"
|
|
2998
|
-
case this.NTF_LDS_SI_RI_DOMAIN_PARAMS_UNSUPPORTED_ALGORITHM:
|
|
2999
|
-
return "Notification - SI: RI domain params unsupported algorithm"
|
|
3000
|
-
case this.NTF_LDS_SI_AA_INFO_INCORRECT_VERSION:
|
|
3001
|
-
return "Notification - SI: AA info incorrect version"
|
|
3002
|
-
case this.NTF_LDS_SI_AA_INFO_UNSUPPORTED_ALGORITHM:
|
|
3003
|
-
return "Notification - SI: AA info unsupported algorithm"
|
|
3004
|
-
case this.NTF_LDS_SI_AA_INFO_INCONSISTENT_ALGORITHM_REFERENCE:
|
|
3005
|
-
return "Notification - SI: AA info inconsistent algorithm reference"
|
|
3006
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFO_NOT_AVAILABLE:
|
|
3007
|
-
return "Notification - SI: PACE Info Not Available"
|
|
3008
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFO_NO_STD_PARAMETERS:
|
|
3009
|
-
return "Notification - SI: PACE Info No Std Parameters"
|
|
3010
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFO_NO_MATCHING_DOMAIN_PARAMS:
|
|
3011
|
-
return "Notification - SI: PACE Info No Matching Domain Params"
|
|
3012
|
-
case this.NTF_LDS_SI_STORAGE_CA_INFO_NOT_AVAILABLE:
|
|
3013
|
-
return "Notification - SI: CA Info Not Available"
|
|
3014
|
-
case this.NTF_LDS_SI_STORAGE_CA_DOMAIN_PARAMS_NO_REQUIRED_OPTION:
|
|
3015
|
-
return "Notification - SI: CA Domain Params No Required Option"
|
|
3016
|
-
case this.NTF_LDS_SI_STORAGE_CA_DOMAIN_PARAMS_NOT_AVAILABLE:
|
|
3017
|
-
return "Notification - SI: CA Domain Params Not Available"
|
|
3018
|
-
case this.NTF_LDS_SI_STORAGE_CA_ANONYMOUS_INFOS:
|
|
3019
|
-
return "Notification - SI: CA Anonymous Infos"
|
|
3020
|
-
case this.NTF_LDS_SI_STORAGE_CA_INFO_NO_MATCHING_DOMAIN_PARAMS:
|
|
3021
|
-
return "Notification - SI: CA Info No Matching Domain Params"
|
|
3022
|
-
case this.NTF_LDS_SI_STORAGE_CA_INFO_NO_MATCHING_PUBLIC_KEY:
|
|
3023
|
-
return "Notification - SI: CA Info No Matching Public Key"
|
|
3024
|
-
case this.NTF_LDS_SI_STORAGE_CA_INCORRECT_INFOS_QUANTITY:
|
|
3025
|
-
return "Notification - SI: CA Incorrect Infos Quantity"
|
|
3026
|
-
case this.NTF_LDS_SI_STORAGE_TA_INFO_NOT_AVAILABLE:
|
|
3027
|
-
return "Notification - SI: TA Info Not Available"
|
|
3028
|
-
case this.NTF_LDS_SI_STORAGE_CARD_INFO_LOCATOR_MULTIPLE_ENTRIES:
|
|
3029
|
-
return "Notification - SI: Card Info Locator Multiple Entries"
|
|
3030
|
-
case this.NTF_LDS_SI_STORAGE_EID_SECURITY_INFO_MULTIPLE_ENTRIES:
|
|
3031
|
-
return "Notification - SI: eID Security Info Multiple Entries"
|
|
3032
|
-
case this.NTF_LDS_SI_STORAGE_PRIVILEGED_TI_MULTIPLE_ENTRIES:
|
|
3033
|
-
return "Notification - SI: Privileged TI Multiple Entries"
|
|
3034
|
-
case this.NTF_LDS_SI_STORAGE_PRIVILEGED_TI_INCORRECT_USAGE:
|
|
3035
|
-
return "Notification - SI: Privileged TI Incorrect Usage"
|
|
3036
|
-
case this.NTF_LDS_SI_STORAGE_RI_DOMAIN_PARAMS_MULTIPLE_ENTRIES:
|
|
3037
|
-
return "Notification - SI: RI domain params multiple entries"
|
|
3038
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFOS_NON_CONSISTANT:
|
|
3039
|
-
return "Notification - SI: Storage PACE Info Non Consistant"
|
|
3040
|
-
case this.NTF_LDS_CV_CERTIFICATE_PROFILE_INCORRECT_VERSION:
|
|
3041
|
-
return "Notification - CV Certificate: Profile incorrect version"
|
|
3042
|
-
case this.NTF_LDS_CV_CERTIFICATE_VALIDITY:
|
|
3043
|
-
return "Notification - CV Certificate: Validity"
|
|
3044
|
-
case this.NTF_LDS_CV_CERTIFICATE_NON_CV_CA_DOMAIN_PARAMETERS:
|
|
3045
|
-
return "Notification - CV Certificate: Non CVCA domain parameters"
|
|
3046
|
-
case this.NTF_LDS_CV_CERTIFICATE_PRIVATE_KEY_INCORRECT_VERSION:
|
|
3047
|
-
return "Notification - CV Certificate: Private key incorrect version"
|
|
3048
|
-
case this.NTF_LDS_TA_PACE_STATIC_BINDING_USED:
|
|
3049
|
-
return "Notification - TA: PACE static binding used"
|
|
3050
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_VALIDITY:
|
|
3051
|
-
return "Notification - Auth ML signer info: Certificate validity"
|
|
3052
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_ROOT_IS_NOT_TRUSTED:
|
|
3053
|
-
return "Notification - Auth ML signer info: Certificate root is not trusted"
|
|
3054
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_CANT_FIND_CSCA:
|
|
3055
|
-
return "Notification - Auth ML signer info: Certificate cannot find CSCA"
|
|
3056
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_REVOKED:
|
|
3057
|
-
return "Notification - Auth ML signer info: Certificate revoked"
|
|
3058
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_SIGNATURE_INVALID:
|
|
3059
|
-
return "Notification - Auth ML signer info: Certificate signature invalid"
|
|
3060
|
-
case this.NTF_LDS_ASN_SIGNED_DATA_CONTENT_OID_INCORRECT:
|
|
3061
|
-
return "Notification - ASN signed data: Content OID incorrect"
|
|
3062
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_LIST_CONTENT_DESCRIPTION_ATTR_DATA:
|
|
3063
|
-
return "Notification - ASN signer info: List content description attr data"
|
|
3064
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_LIST_CONTENT_DESCRIPTION_ATTR_MISSING:
|
|
3065
|
-
return "Notification - ASN signer info: List content description attr missing"
|
|
3066
|
-
case this.NTF_LDS_BSI_BLACK_LIST_VERSION_INCORRECT:
|
|
3067
|
-
return "Notification - BSI: Black list version incorrect"
|
|
3068
|
-
case this.NTF_LDS_BSI_DEFECT_LIST_VERSION_INCORRECT:
|
|
3069
|
-
return "Notification - BSI: Defect list version incorrect"
|
|
3070
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CSCA_ALT_NAMES_NON_MATCHING:
|
|
3071
|
-
return "Notification - ICAO certificate extension: CSCA alt names non-matching"
|
|
3072
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_CRITICAL:
|
|
3073
|
-
return "Notification - ICAO certificate extension Doc type list: Critical"
|
|
3074
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_NON_COMPLIANT:
|
|
3075
|
-
return "Notification - ICAO certificate extension Doc type list: non-compliant"
|
|
3076
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_CRITICAL:
|
|
3077
|
-
return "Notification - ICAO certificate extension: Issuer alt name critical"
|
|
3078
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_NAME_CHANGE_CRITICAL:
|
|
3079
|
-
return "Notification - ICAO certificate extension: Name change critical"
|
|
3080
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_NAME_CHANGE_INCORRECT_DATA:
|
|
3081
|
-
return "Notification - ICAO certificate extension: Name change incorrect data"
|
|
3082
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_NAME_CHANGE_NON_COMPLIANT:
|
|
3083
|
-
return "Notification - ICAO certificate extension: Name change non-compliant"
|
|
3084
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_OPTIONAL_CRITICAL:
|
|
3085
|
-
return "Notification - ICAO certificate extension: Optional critical"
|
|
3086
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_ATTRIBUTE_NON_COMPLIANT:
|
|
3087
|
-
return "Notification - ICAO certificate: Issuer attribute non-compliant"
|
|
3088
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_SN_NON_COMPLIANT:
|
|
3089
|
-
return "Notification - ICAO certificate: Issuer SN non-compliant"
|
|
3090
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_SUBJECT_COUNTRY_NON_MATCHING:
|
|
3091
|
-
return "Notification - ICAO certificate: Issuer subject country non-matching"
|
|
3092
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SN_NON_COMPLIANT:
|
|
3093
|
-
return "Notification - ICAO certificate: SN non-compliant"
|
|
3094
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_ATTRIBUTE_NON_COMPLIANT:
|
|
3095
|
-
return "Notification - ICAO certificate: Subject attribute non-compliant"
|
|
3096
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COMMON_NAME_NON_COMPLIANT:
|
|
3097
|
-
return "Notification - ICAO certificate: Subject common name non-compliant"
|
|
3098
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_NON_COMPLIANT:
|
|
3099
|
-
return "Notification - ICAO certificate: Subject non-compliant"
|
|
3100
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_SN_NON_COMPLIANT:
|
|
3101
|
-
return "Notification - ICAO certificate: Subject SN non-compliant"
|
|
3102
|
-
case this.NTF_LDS_ICAO_DEVIATION_LIST_VERSION_INCORRECT:
|
|
3103
|
-
return "Notification - ICAO Deviation list: Version incorrect"
|
|
3104
|
-
default:
|
|
3105
|
-
return value
|
|
3106
|
-
}
|
|
3107
|
-
}
|
|
3108
2156
|
}
|
|
3109
2157
|
|
|
3110
2158
|
const eImageQualityCheckType = {
|
|
@@ -3117,31 +2165,6 @@ const eImageQualityCheckType = {
|
|
|
3117
2165
|
IQC_SCREEN_CAPTURE: 6,
|
|
3118
2166
|
IQC_PORTRAIT: 7,
|
|
3119
2167
|
IQC_HANDWRITTEN: 8,
|
|
3120
|
-
|
|
3121
|
-
getTranslation: function (value) {
|
|
3122
|
-
switch (value) {
|
|
3123
|
-
case this.IQC_IMAGE_GLARES:
|
|
3124
|
-
return "Glares"
|
|
3125
|
-
case this.IQC_IMAGE_FOCUS:
|
|
3126
|
-
return "Focus"
|
|
3127
|
-
case this.IQC_IMAGE_RESOLUTION:
|
|
3128
|
-
return "Resolution"
|
|
3129
|
-
case this.IQC_IMAGE_COLORNESS:
|
|
3130
|
-
return "Color"
|
|
3131
|
-
case this.IQC_PERSPECTIVE:
|
|
3132
|
-
return "Perspective angle"
|
|
3133
|
-
case this.IQC_BOUNDS:
|
|
3134
|
-
return "Bounds"
|
|
3135
|
-
case this.IQC_SCREEN_CAPTURE:
|
|
3136
|
-
return "Moire pattern"
|
|
3137
|
-
case this.IQC_PORTRAIT:
|
|
3138
|
-
return "Portrait"
|
|
3139
|
-
case this.IQC_HANDWRITTEN:
|
|
3140
|
-
return "Handwritten"
|
|
3141
|
-
default:
|
|
3142
|
-
return value
|
|
3143
|
-
}
|
|
3144
|
-
}
|
|
3145
2168
|
}
|
|
3146
2169
|
|
|
3147
2170
|
const MRZFormat = {
|
|
@@ -3173,10 +2196,11 @@ const BarcodeType = {
|
|
|
3173
2196
|
DATAMATRIX: 16,
|
|
3174
2197
|
ALL_1D: 17,
|
|
3175
2198
|
CODE11: 18,
|
|
2199
|
+
JABCODE: 19,
|
|
3176
2200
|
}
|
|
3177
2201
|
|
|
3178
2202
|
const eRPRM_SecurityFeatureType = {
|
|
3179
|
-
|
|
2203
|
+
NONE: -1,
|
|
3180
2204
|
SECURITY_FEATURE_TYPE_BLANK: 0,
|
|
3181
2205
|
SECURITY_FEATURE_TYPE_FILL: 1,
|
|
3182
2206
|
SECURITY_FEATURE_TYPE_PHOTO: 2,
|
|
@@ -3221,6 +2245,7 @@ const eRPRM_SecurityFeatureType = {
|
|
|
3221
2245
|
SECURITY_FEATURE_TYPE_BARCODE_SIZE_CHECK: 42,
|
|
3222
2246
|
SECURITY_FEATURE_TYPE_LAS_INK: 43,
|
|
3223
2247
|
SECURITY_FEATURE_TYPE_LIVENESS_MLI: 44,
|
|
2248
|
+
SECURITY_FEATURE_TYPE_LIVENESS_BARCODE_BACKGROUND: 45,
|
|
3224
2249
|
}
|
|
3225
2250
|
|
|
3226
2251
|
const OnlineMode = {
|
|
@@ -3512,57 +2537,6 @@ const eGraphicFieldType = {
|
|
|
3512
2537
|
GF_FINGER_RIGHT_MIDDLE: 307,
|
|
3513
2538
|
GF_FINGER_RIGHT_RING: 308,
|
|
3514
2539
|
GF_FINGER_RIGHT_LITTLE: 309,
|
|
3515
|
-
|
|
3516
|
-
getTranslation: function (value) {
|
|
3517
|
-
switch (value) {
|
|
3518
|
-
case this.GF_PORTRAIT:
|
|
3519
|
-
return "Portrait"
|
|
3520
|
-
case this.GF_FINGERPR:
|
|
3521
|
-
return "Fingerprint"
|
|
3522
|
-
case this.GF_EYE:
|
|
3523
|
-
return "Iris"
|
|
3524
|
-
case this.GF_SIGNATURE:
|
|
3525
|
-
return "Signature"
|
|
3526
|
-
case this.GF_BAR_CODE:
|
|
3527
|
-
return "Barcode"
|
|
3528
|
-
case this.GF_PROOF_OF_CITIZENSHIP:
|
|
3529
|
-
return "Proof of citizenship"
|
|
3530
|
-
case this.GF_DOCUMENT_IMAGE:
|
|
3531
|
-
return "Document image"
|
|
3532
|
-
case this.GF_COLOR_DYNAMIC:
|
|
3533
|
-
return "Color dynamics"
|
|
3534
|
-
case this.GF_GHOST_PORTRAIT:
|
|
3535
|
-
return "Ghost portrait"
|
|
3536
|
-
case this.GF_STAMP:
|
|
3537
|
-
return "Stamp"
|
|
3538
|
-
case this.GF_PORTRAIT_OF_CHILD:
|
|
3539
|
-
return "Portrait of child"
|
|
3540
|
-
case this.GF_OTHER:
|
|
3541
|
-
return "Other"
|
|
3542
|
-
case this.GF_FINGER_LEFT_THUMB:
|
|
3543
|
-
return "Left thumb"
|
|
3544
|
-
case this.GF_FINGER_LEFT_INDEX:
|
|
3545
|
-
return "Left index finger"
|
|
3546
|
-
case this.GF_FINGER_LEFT_MIDDLE:
|
|
3547
|
-
return "Left middle finger"
|
|
3548
|
-
case this.GF_FINGER_LEFT_RING:
|
|
3549
|
-
return "Left ring finger"
|
|
3550
|
-
case this.GF_FINGER_LEFT_LITTLE:
|
|
3551
|
-
return "Left little finger"
|
|
3552
|
-
case this.GF_FINGER_RIGHT_THUMB:
|
|
3553
|
-
return "Right thumb"
|
|
3554
|
-
case this.GF_FINGER_RIGHT_INDEX:
|
|
3555
|
-
return "Right index finger"
|
|
3556
|
-
case this.GF_FINGER_RIGHT_MIDDLE:
|
|
3557
|
-
return "Right middle finger"
|
|
3558
|
-
case this.GF_FINGER_RIGHT_RING:
|
|
3559
|
-
return "Right ring finger"
|
|
3560
|
-
case this.GF_FINGER_RIGHT_LITTLE:
|
|
3561
|
-
return "Right little finger"
|
|
3562
|
-
default:
|
|
3563
|
-
return value
|
|
3564
|
-
}
|
|
3565
|
-
}
|
|
3566
2540
|
}
|
|
3567
2541
|
|
|
3568
2542
|
const RegDeviceConfigType = {
|
|
@@ -3681,169 +2655,6 @@ const eRFID_DataFile_Type = {
|
|
|
3681
2655
|
DFT_VDS: 900,
|
|
3682
2656
|
DFT_VDSNC: 901,
|
|
3683
2657
|
DFT_USERDEFINED: 1000,
|
|
3684
|
-
|
|
3685
|
-
getTranslation: function (value) {
|
|
3686
|
-
switch (value) {
|
|
3687
|
-
case this.DFT_MIFARE_DATA:
|
|
3688
|
-
return "MIFARE data"
|
|
3689
|
-
case this.DFT_DL_COM:
|
|
3690
|
-
return "EF.COM"
|
|
3691
|
-
case this.DFT_PASSPORT_DG1:
|
|
3692
|
-
return "Machine Readable Zone (DG1)"
|
|
3693
|
-
case this.DFT_ID_DG1:
|
|
3694
|
-
return "Document type" + " (DG1)"
|
|
3695
|
-
case this.DFT_DL_DG1:
|
|
3696
|
-
return "Text data elements (DG1)"
|
|
3697
|
-
case this.DFT_PASSPORT_DG2:
|
|
3698
|
-
return "Biometry - Facial data (DG2)"
|
|
3699
|
-
case this.DFT_ID_DG2:
|
|
3700
|
-
return "Issuing state" + " (DG2)"
|
|
3701
|
-
case this.DFT_DL_DG2:
|
|
3702
|
-
return "License holder information (DG2)"
|
|
3703
|
-
case this.DFT_PASSPORT_DG3:
|
|
3704
|
-
return "Biometry - Fingerprint(s) (DG3)"
|
|
3705
|
-
case this.DFT_ID_DG3:
|
|
3706
|
-
return "Date of expiry" + " (DG3)"
|
|
3707
|
-
case this.DFT_DL_DG3:
|
|
3708
|
-
return "Issuing authority details (DG3)"
|
|
3709
|
-
case this.DFT_PASSPORT_DG4:
|
|
3710
|
-
return "Biometry - Iris Data (DG4)"
|
|
3711
|
-
case this.DFT_ID_DG4:
|
|
3712
|
-
return "Given name" + " (DG4)"
|
|
3713
|
-
case this.DFT_DL_DG4:
|
|
3714
|
-
return "Portrait image (DG4)"
|
|
3715
|
-
case this.DFT_PASSPORT_DG5:
|
|
3716
|
-
return "Portrait(s) (DG5)"
|
|
3717
|
-
case this.DFT_ID_DG5:
|
|
3718
|
-
return "Family name" + " (DG5)"
|
|
3719
|
-
case this.DFT_DL_DG5:
|
|
3720
|
-
return "Signature / usual mark image (DG5)"
|
|
3721
|
-
case this.DFT_PASSPORT_DG6:
|
|
3722
|
-
return "not defined (DG6)"
|
|
3723
|
-
case this.DFT_ID_DG6:
|
|
3724
|
-
return "Pseudonym" + " (DG6)"
|
|
3725
|
-
case this.DFT_DL_DG6:
|
|
3726
|
-
return "Biometry - Facial data (DG6)"
|
|
3727
|
-
case this.DFT_PASSPORT_DG7:
|
|
3728
|
-
return "Signature / usual mark image (DG7)"
|
|
3729
|
-
case this.DFT_ID_DG7:
|
|
3730
|
-
return "Academic title" + " (DG7)"
|
|
3731
|
-
case this.DFT_DL_DG7:
|
|
3732
|
-
return "Biometry - Fingerprint(s) (DG7)"
|
|
3733
|
-
case this.DFT_PASSPORT_DG8:
|
|
3734
|
-
return "not defined (DG8)"
|
|
3735
|
-
case this.DFT_ID_DG8:
|
|
3736
|
-
return "Date of birth" + " (DG8)"
|
|
3737
|
-
case this.DFT_DL_DG8:
|
|
3738
|
-
return "Biometry - Iris Data (DG8)"
|
|
3739
|
-
case this.DFT_PASSPORT_DG9:
|
|
3740
|
-
return "not defined (DG9)"
|
|
3741
|
-
case this.DFT_ID_DG9:
|
|
3742
|
-
return "Place of birth" + " (DG9)"
|
|
3743
|
-
case this.DFT_DL_DG9:
|
|
3744
|
-
return "Biometry - Other (DG9)"
|
|
3745
|
-
case this.DFT_PASSPORT_DG10:
|
|
3746
|
-
return "not defined (DG10)"
|
|
3747
|
-
case this.DFT_ID_DG10:
|
|
3748
|
-
return "Nationality" + " (DG10)"
|
|
3749
|
-
case this.DFT_DL_DG10:
|
|
3750
|
-
return "not defined (DG10)"
|
|
3751
|
-
case this.DFT_PASSPORT_DG11:
|
|
3752
|
-
return "Additional personal detail(s) (DG11)"
|
|
3753
|
-
case this.DFT_ID_DG11:
|
|
3754
|
-
return "Sex" + " (DG11)"
|
|
3755
|
-
case this.DFT_DL_DG11:
|
|
3756
|
-
return "Optional domestic data (DG11)"
|
|
3757
|
-
case this.DFT_PASSPORT_DG12:
|
|
3758
|
-
return "Additional document details (DG12)"
|
|
3759
|
-
case this.DFT_ID_DG12:
|
|
3760
|
-
return "Optional details" + " (DG12)"
|
|
3761
|
-
case this.DFT_DL_DG12:
|
|
3762
|
-
return "Non-match alert (DG12)"
|
|
3763
|
-
case this.DFT_PASSPORT_DG13:
|
|
3764
|
-
return "Optional detail(s) (DG13)"
|
|
3765
|
-
case this.DFT_ID_DG13:
|
|
3766
|
-
return "Undefined" + " (DG13)"
|
|
3767
|
-
case this.DFT_DL_DG13:
|
|
3768
|
-
return "Active Authentication info (DG13)"
|
|
3769
|
-
case this.DFT_PASSPORT_DG14:
|
|
3770
|
-
return "EAC info (DG14)"
|
|
3771
|
-
case this.DFT_ID_DG14:
|
|
3772
|
-
return "Undefined" + " (DG14)"
|
|
3773
|
-
case this.DFT_DL_DG14:
|
|
3774
|
-
return "EAC info (DG14)"
|
|
3775
|
-
case this.DFT_PASSPORT_DG15:
|
|
3776
|
-
return "Active Authentication info (DG15)"
|
|
3777
|
-
case this.DFT_ID_DG15:
|
|
3778
|
-
return "Undefined" + " (DG15)"
|
|
3779
|
-
case this.DFT_PASSPORT_DG16:
|
|
3780
|
-
return "Person(s) to notify (DG16)"
|
|
3781
|
-
case this.DFT_ID_DG16:
|
|
3782
|
-
return "Undefined" + " (DG16)"
|
|
3783
|
-
case this.DFT_PASSPORT_DG17:
|
|
3784
|
-
return "DG17"
|
|
3785
|
-
case this.DFT_ID_DG17:
|
|
3786
|
-
return "Place of registration" + " (DG17)"
|
|
3787
|
-
case this.DFT_PASSPORT_DG18:
|
|
3788
|
-
return "DG18"
|
|
3789
|
-
case this.DFT_ID_DG18:
|
|
3790
|
-
return "Place of registration" + " (DG18)"
|
|
3791
|
-
case this.DFT_PASSPORT_DG19:
|
|
3792
|
-
return "DG19"
|
|
3793
|
-
case this.DFT_ID_DG19:
|
|
3794
|
-
return "Residence permit 1" + " (DG19)"
|
|
3795
|
-
case this.DFT_PASSPORT_DG20:
|
|
3796
|
-
return "DG20"
|
|
3797
|
-
case this.DFT_ID_DG20:
|
|
3798
|
-
return "Residence permit 2" + " (DG20)"
|
|
3799
|
-
case this.DFT_ID_DG21:
|
|
3800
|
-
return "Optional details" + " (DG21)"
|
|
3801
|
-
case this.DFT_DL_SOD:
|
|
3802
|
-
return "EF.SOD"
|
|
3803
|
-
case this.DFT_PASSPORT_CVCA:
|
|
3804
|
-
return "EF.CVCA"
|
|
3805
|
-
case this.DFT_MIFARE_VALIDITY:
|
|
3806
|
-
return "MIFARE validity"
|
|
3807
|
-
case this.DFT_PACE_CARDACCESS:
|
|
3808
|
-
return "EF.CardAccess"
|
|
3809
|
-
case this.DFT_PACE_CARDSECURITY:
|
|
3810
|
-
return "EF.CardSecurity"
|
|
3811
|
-
case this.DFT_PACE_CHIPSECURITY:
|
|
3812
|
-
return "EF.ChipSecurity"
|
|
3813
|
-
case this.DFT_CERTIFICATE:
|
|
3814
|
-
return "Certificate"
|
|
3815
|
-
case this.DFT_APP_DIRECTORY:
|
|
3816
|
-
return "App directory"
|
|
3817
|
-
case this.DFT_ATR:
|
|
3818
|
-
return "DFT_ATR"
|
|
3819
|
-
case this.DFT_CHIP_PROPERTIES:
|
|
3820
|
-
return "DFT_CHIP_PROPERTIES"
|
|
3821
|
-
case this.DFT_DEFECTLIST:
|
|
3822
|
-
return "DFT_DEFECTLIST"
|
|
3823
|
-
case this.DFT_DEVIATIONLIST:
|
|
3824
|
-
return "DFT_DEVIATIONLIST"
|
|
3825
|
-
case this.DFT_DL_CE:
|
|
3826
|
-
return "DFT_DL_CE"
|
|
3827
|
-
case this.DFT_DL_CVCA:
|
|
3828
|
-
return "DFT_DL_CVCA"
|
|
3829
|
-
case this.DFT_ESIGN_PK:
|
|
3830
|
-
return "DFT_ESIGN_PK"
|
|
3831
|
-
case this.DFT_ESIGN_SIGNEDDATA:
|
|
3832
|
-
return "DFT_ESIGN_SIGNEDDATA"
|
|
3833
|
-
case this.DFT_LOGDATA:
|
|
3834
|
-
return "DFT_LOGDATA"
|
|
3835
|
-
case this.DFT_MASTERLIST:
|
|
3836
|
-
return "DFT_MASTERLIST"
|
|
3837
|
-
case this.DFT_SESSION:
|
|
3838
|
-
return "DFT_SESSION"
|
|
3839
|
-
case this.DFT_UNSPECIFIED:
|
|
3840
|
-
return "DFT_UNSPECIFIED"
|
|
3841
|
-
case this.DFT_USERDEFINED:
|
|
3842
|
-
return "DFT_USERDEFINED"
|
|
3843
|
-
default:
|
|
3844
|
-
return value
|
|
3845
|
-
}
|
|
3846
|
-
}
|
|
3847
2658
|
}
|
|
3848
2659
|
|
|
3849
2660
|
const eVisualFieldType = {
|
|
@@ -4463,1225 +3274,20 @@ const eVisualFieldType = {
|
|
|
4463
3274
|
FT_DLCLASSCODE_EC1_NOTES: 664,
|
|
4464
3275
|
FT_DLCLASSCODE_EC1_TO: 665,
|
|
4465
3276
|
FT_PLACE_OF_BIRTH_CITY: 666,
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
return "Date of birth"
|
|
4481
|
-
case this.FT_PLACE_OF_BIRTH:
|
|
4482
|
-
return "Place of birth"
|
|
4483
|
-
case this.FT_PERSONAL_NUMBER:
|
|
4484
|
-
return "Personal number"
|
|
4485
|
-
case this.FT_SURNAME:
|
|
4486
|
-
return "Surname"
|
|
4487
|
-
case this.FT_GIVEN_NAMES:
|
|
4488
|
-
return "Given name"
|
|
4489
|
-
case this.FT_MOTHERS_NAME:
|
|
4490
|
-
return "Mother\'s name"
|
|
4491
|
-
case this.FT_NATIONALITY:
|
|
4492
|
-
return "Nationality"
|
|
4493
|
-
case this.FT_SEX:
|
|
4494
|
-
return "Sex"
|
|
4495
|
-
case this.FT_HEIGHT:
|
|
4496
|
-
return "Height"
|
|
4497
|
-
case this.FT_WEIGHT:
|
|
4498
|
-
return "Weight"
|
|
4499
|
-
case this.FT_EYES_COLOR:
|
|
4500
|
-
return "Eye color"
|
|
4501
|
-
case this.FT_HAIR_COLOR:
|
|
4502
|
-
return "Hair color"
|
|
4503
|
-
case this.FT_ADDRESS:
|
|
4504
|
-
return "Address"
|
|
4505
|
-
case this.FT_DONOR:
|
|
4506
|
-
return "Donor"
|
|
4507
|
-
case this.FT_SOCIAL_SECURITY_NUMBER:
|
|
4508
|
-
return "Social insurance number"
|
|
4509
|
-
case this.FT_DL_CLASS:
|
|
4510
|
-
return "DL category"
|
|
4511
|
-
case this.FT_DL_ENDORSED:
|
|
4512
|
-
return "DL endorsement code"
|
|
4513
|
-
case this.FT_DL_RESTRICTION_CODE:
|
|
4514
|
-
return "DL Restriction Code"
|
|
4515
|
-
case this.FT_DL_UNDER_21_DATE:
|
|
4516
|
-
return "Date of 21st birthday"
|
|
4517
|
-
case this.FT_AUTHORITY:
|
|
4518
|
-
return "Issuing authority"
|
|
4519
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES:
|
|
4520
|
-
return "Surname and given names"
|
|
4521
|
-
case this.FT_NATIONALITY_CODE:
|
|
4522
|
-
return "Nationality code"
|
|
4523
|
-
case this.FT_PASSPORT_NUMBER:
|
|
4524
|
-
return "Passport number"
|
|
4525
|
-
case this.FT_INVITATION_NUMBER:
|
|
4526
|
-
return "Invitation number"
|
|
4527
|
-
case this.FT_VISA_ID:
|
|
4528
|
-
return "Visa ID"
|
|
4529
|
-
case this.FT_VISA_CLASS:
|
|
4530
|
-
return "Visa Class"
|
|
4531
|
-
case this.FT_VISA_SUB_CLASS:
|
|
4532
|
-
return "Visa subclass"
|
|
4533
|
-
case this.FT_MRZ_STRING_1:
|
|
4534
|
-
return "MRZ line 1"
|
|
4535
|
-
case this.FT_MRZ_STRING_2:
|
|
4536
|
-
return "MRZ line 2"
|
|
4537
|
-
case this.FT_MRZ_STRING_3:
|
|
4538
|
-
return "MRZ line 3"
|
|
4539
|
-
case this.FT_MRZ_TYPE:
|
|
4540
|
-
return "MRZ Type"
|
|
4541
|
-
case this.FT_OPTIONAL_DATA:
|
|
4542
|
-
return "Optional data"
|
|
4543
|
-
case this.FT_DOCUMENT_CLASS_NAME:
|
|
4544
|
-
return "Document class"
|
|
4545
|
-
case this.FT_ISSUING_STATE_NAME:
|
|
4546
|
-
return "Issuing state"
|
|
4547
|
-
case this.FT_PLACE_OF_ISSUE:
|
|
4548
|
-
return "Place of issue"
|
|
4549
|
-
case this.FT_DOCUMENT_NUMBER_CHECKSUM:
|
|
4550
|
-
return "Checksum for document number"
|
|
4551
|
-
case this.FT_DATE_OF_BIRTH_CHECKSUM:
|
|
4552
|
-
return "Checksum for date of birth"
|
|
4553
|
-
case this.FT_DATE_OF_EXPIRY_CHECKSUM:
|
|
4554
|
-
return "Checksum for date of expiry"
|
|
4555
|
-
case this.FT_PERSONAL_NUMBER_CHECKSUM:
|
|
4556
|
-
return "Checksum for personal number"
|
|
4557
|
-
case this.FT_FINAL_CHECKSUM:
|
|
4558
|
-
return "Final checksum"
|
|
4559
|
-
case this.FT_PASSPORT_NUMBER_CHECKSUM:
|
|
4560
|
-
return "Checksum for passport number"
|
|
4561
|
-
case this.FT_INVITATION_NUMBER_CHECKSUM:
|
|
4562
|
-
return "Checksum for invitation number"
|
|
4563
|
-
case this.FT_VISA_ID_CHECKSUM:
|
|
4564
|
-
return "Checksum for visa ID"
|
|
4565
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES_CHECKSUM:
|
|
4566
|
-
return "Checksum for surname and given names"
|
|
4567
|
-
case this.FT_VISA_VALID_UNTIL_CHECKSUM:
|
|
4568
|
-
return "Checksum for visa expiry date"
|
|
4569
|
-
case this.FT_OTHER:
|
|
4570
|
-
return "Other"
|
|
4571
|
-
case this.FT_MRZ_STRINGS:
|
|
4572
|
-
return "MRZ lines"
|
|
4573
|
-
case this.FT_NAME_SUFFIX:
|
|
4574
|
-
return "Name suffix"
|
|
4575
|
-
case this.FT_NAME_PREFIX:
|
|
4576
|
-
return "Name prefix"
|
|
4577
|
-
case this.FT_DATE_OF_ISSUE_CHECKSUM:
|
|
4578
|
-
return "Checksum for date of issue"
|
|
4579
|
-
case this.FT_DATE_OF_ISSUE_CHECK_DIGIT:
|
|
4580
|
-
return "Check digit for date of issue"
|
|
4581
|
-
case this.FT_DOCUMENT_SERIES:
|
|
4582
|
-
return "Document series"
|
|
4583
|
-
case this.FT_REG_CERT_REG_NUMBER:
|
|
4584
|
-
return "Registration number"
|
|
4585
|
-
case this.FT_REG_CERT_CAR_MODEL:
|
|
4586
|
-
return "Vehicle model"
|
|
4587
|
-
case this.FT_REG_CERT_CAR_COLOR:
|
|
4588
|
-
return "Vehicle color"
|
|
4589
|
-
case this.FT_REG_CERT_BODY_NUMBER:
|
|
4590
|
-
return "Body number"
|
|
4591
|
-
case this.FT_REG_CERT_CAR_TYPE:
|
|
4592
|
-
return "Vehicle type"
|
|
4593
|
-
case this.FT_REG_CERT_MAX_WEIGHT:
|
|
4594
|
-
return "Max permissible weight"
|
|
4595
|
-
case this.FT_REG_CERT_WEIGHT:
|
|
4596
|
-
return "Unladen mass"
|
|
4597
|
-
case this.FT_ADDRESS_AREA:
|
|
4598
|
-
return "Area"
|
|
4599
|
-
case this.FT_ADDRESS_STATE:
|
|
4600
|
-
return "State"
|
|
4601
|
-
case this.FT_ADDRESS_BUILDING:
|
|
4602
|
-
return "Unit"
|
|
4603
|
-
case this.FT_ADDRESS_HOUSE:
|
|
4604
|
-
return "Building"
|
|
4605
|
-
case this.FT_ADDRESS_FLAT:
|
|
4606
|
-
return "Apartment"
|
|
4607
|
-
case this.FT_PLACE_OF_REGISTRATION:
|
|
4608
|
-
return "Place of registration"
|
|
4609
|
-
case this.FT_DATE_OF_REGISTRATION:
|
|
4610
|
-
return "Date of registration"
|
|
4611
|
-
case this.FT_RESIDENT_FROM:
|
|
4612
|
-
return "Resident from"
|
|
4613
|
-
case this.FT_RESIDENT_UNTIL:
|
|
4614
|
-
return "Resident until"
|
|
4615
|
-
case this.FT_AUTHORITY_CODE:
|
|
4616
|
-
return "Issuing authority code"
|
|
4617
|
-
case this.FT_PLACE_OF_BIRTH_AREA:
|
|
4618
|
-
return "Country/region of birth"
|
|
4619
|
-
case this.FT_PLACE_OF_BIRTH_STATE_CODE:
|
|
4620
|
-
return "Birth state code"
|
|
4621
|
-
case this.FT_ADDRESS_STREET:
|
|
4622
|
-
return "Street"
|
|
4623
|
-
case this.FT_ADDRESS_CITY:
|
|
4624
|
-
return "City"
|
|
4625
|
-
case this.FT_ADDRESS_JURISDICTION_CODE:
|
|
4626
|
-
return "Jurisdiction code"
|
|
4627
|
-
case this.FT_ADDRESS_POSTAL_CODE:
|
|
4628
|
-
return "Postal code"
|
|
4629
|
-
case this.FT_DOCUMENT_NUMBER_CHECK_DIGIT:
|
|
4630
|
-
return "Check digit for document number"
|
|
4631
|
-
case this.FT_DATE_OF_BIRTH_CHECK_DIGIT:
|
|
4632
|
-
return "Check digit for date of birth"
|
|
4633
|
-
case this.FT_DATE_OF_EXPIRY_CHECK_DIGIT:
|
|
4634
|
-
return "Check digit for date of expiry"
|
|
4635
|
-
case this.FT_PERSONAL_NUMBER_CHECK_DIGIT:
|
|
4636
|
-
return "Check digit for personal number"
|
|
4637
|
-
case this.FT_FINAL_CHECK_DIGIT:
|
|
4638
|
-
return "Final check digit"
|
|
4639
|
-
case this.FT_PASSPORT_NUMBER_CHECK_DIGIT:
|
|
4640
|
-
return "Check digit for passport number"
|
|
4641
|
-
case this.FT_INVITATION_NUMBER_CHECK_DIGIT:
|
|
4642
|
-
return "Check digit for invitation number"
|
|
4643
|
-
case this.FT_VISA_ID_CHECK_DIGIT:
|
|
4644
|
-
return "Check digit for visa ID"
|
|
4645
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES_CHECK_DIGIT:
|
|
4646
|
-
return "Check digit for surname and given names"
|
|
4647
|
-
case this.FT_VISA_VALID_UNTIL_CHECK_DIGIT:
|
|
4648
|
-
return "Check digit for visa expiry date"
|
|
4649
|
-
case this.FT_PERMIT_DL_CLASS:
|
|
4650
|
-
return "Permit class"
|
|
4651
|
-
case this.FT_PERMIT_DATE_OF_EXPIRY:
|
|
4652
|
-
return "Permit expiry date"
|
|
4653
|
-
case this.FT_PERMIT_IDENTIFIER:
|
|
4654
|
-
return "Permit identifier"
|
|
4655
|
-
case this.FT_PERMIT_DATE_OF_ISSUE:
|
|
4656
|
-
return "Permit issue date"
|
|
4657
|
-
case this.FT_PERMIT_RESTRICTION_CODE:
|
|
4658
|
-
return "Permit restriction code"
|
|
4659
|
-
case this.FT_PERMIT_ENDORSED:
|
|
4660
|
-
return "Permit endorsement code"
|
|
4661
|
-
case this.FT_ISSUE_TIMESTAMP:
|
|
4662
|
-
return "Issue time"
|
|
4663
|
-
case this.FT_NUMBER_OF_DUPLICATES:
|
|
4664
|
-
return "Number of duplicates"
|
|
4665
|
-
case this.FT_MEDICAL_INDICATOR_CODES:
|
|
4666
|
-
return "Medical notes/codes"
|
|
4667
|
-
case this.FT_NON_RESIDENT_INDICATOR:
|
|
4668
|
-
return "Non-resident indicator"
|
|
4669
|
-
case this.FT_VISA_TYPE:
|
|
4670
|
-
return "Visa type"
|
|
4671
|
-
case this.FT_VISA_VALID_FROM:
|
|
4672
|
-
return "Visa valid from"
|
|
4673
|
-
case this.FT_VISA_VALID_UNTIL:
|
|
4674
|
-
return "Visa valid until"
|
|
4675
|
-
case this.FT_DURATION_OF_STAY:
|
|
4676
|
-
return "Duration of stay"
|
|
4677
|
-
case this.FT_NUMBER_OF_ENTRIES:
|
|
4678
|
-
return "Number of entries"
|
|
4679
|
-
case this.FT_DAY:
|
|
4680
|
-
return "Day"
|
|
4681
|
-
case this.FT_MONTH:
|
|
4682
|
-
return "Month"
|
|
4683
|
-
case this.FT_YEAR:
|
|
4684
|
-
return "Year"
|
|
4685
|
-
case this.FT_UNIQUE_CUSTOMER_IDENTIFIER:
|
|
4686
|
-
return "Unique customer identifier"
|
|
4687
|
-
case this.FT_COMMERCIAL_VEHICLE_CODES:
|
|
4688
|
-
return "Commercial vehicle code"
|
|
4689
|
-
case this.FT_AKA_DATE_OF_BIRTH:
|
|
4690
|
-
return "AKA: Date of birth"
|
|
4691
|
-
case this.FT_AKA_SOCIAL_SECURITY_NUMBER:
|
|
4692
|
-
return "AKA: Social Insurance Number"
|
|
4693
|
-
case this.FT_AKA_SURNAME:
|
|
4694
|
-
return "AKA: Surname"
|
|
4695
|
-
case this.FT_AKA_GIVEN_NAMES:
|
|
4696
|
-
return "AKA: Given name"
|
|
4697
|
-
case this.FT_AKA_NAME_SUFFIX:
|
|
4698
|
-
return "AKA: Name suffix"
|
|
4699
|
-
case this.FT_AKA_NAME_PREFIX:
|
|
4700
|
-
return "AKA: Name prefix"
|
|
4701
|
-
case this.FT_MAILING_ADDRESS_STREET:
|
|
4702
|
-
return "Mailing address - street"
|
|
4703
|
-
case this.FT_MAILING_ADDRESS_CITY:
|
|
4704
|
-
return "Mailing address - city"
|
|
4705
|
-
case this.FT_MAILING_ADDRESS_JURISDICTION_CODE:
|
|
4706
|
-
return "Mailing address - jurisdiction code"
|
|
4707
|
-
case this.FT_MAILING_ADDRESS_POSTAL_CODE:
|
|
4708
|
-
return "Mailing address - postal code"
|
|
4709
|
-
case this.FT_AUDIT_INFORMATION:
|
|
4710
|
-
return "Number for validation"
|
|
4711
|
-
case this.FT_INVENTORY_NUMBER:
|
|
4712
|
-
return "Inventory number"
|
|
4713
|
-
case this.FT_RACE_ETHNICITY:
|
|
4714
|
-
return "Race/ethnicity"
|
|
4715
|
-
case this.FT_JURISDICTION_VEHICLE_CLASS:
|
|
4716
|
-
return "Jurisdiction vehicle class"
|
|
4717
|
-
case this.FT_JURISDICTION_ENDORSEMENT_CODE:
|
|
4718
|
-
return "Jurisdiction endorsement code"
|
|
4719
|
-
case this.FT_JURISDICTION_RESTRICTION_CODE:
|
|
4720
|
-
return "Jurisdiction restriction code"
|
|
4721
|
-
case this.FT_FAMILY_NAME:
|
|
4722
|
-
return "Family name"
|
|
4723
|
-
case this.FT_GIVEN_NAMES_RUS:
|
|
4724
|
-
return "Given name (National)"
|
|
4725
|
-
case this.FT_VISA_ID_RUS:
|
|
4726
|
-
return "Visa ID (National)"
|
|
4727
|
-
case this.FT_FATHERS_NAME:
|
|
4728
|
-
return "Father\'s name"
|
|
4729
|
-
case this.FT_FATHERS_NAME_RUS:
|
|
4730
|
-
return "Father\'s name (National)"
|
|
4731
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES_RUS:
|
|
4732
|
-
return "Surname and given names (National)"
|
|
4733
|
-
case this.FT_PLACE_OF_BIRTH_RUS:
|
|
4734
|
-
return "Place of birth (National)"
|
|
4735
|
-
case this.FT_AUTHORITY_RUS:
|
|
4736
|
-
return "Issuing authority (National)"
|
|
4737
|
-
case this.FT_ISSUING_STATE_CODE_NUMERIC:
|
|
4738
|
-
return "Numeric issuing state code"
|
|
4739
|
-
case this.FT_NATIONALITY_CODE_NUMERIC:
|
|
4740
|
-
return "Numeric nationality code"
|
|
4741
|
-
case this.FT_ENGINE_POWER:
|
|
4742
|
-
return "Engine power"
|
|
4743
|
-
case this.FT_ENGINE_VOLUME:
|
|
4744
|
-
return "Engine volume"
|
|
4745
|
-
case this.FT_CHASSIS_NUMBER:
|
|
4746
|
-
return "Chassis number"
|
|
4747
|
-
case this.FT_ENGINE_NUMBER:
|
|
4748
|
-
return "Engine number"
|
|
4749
|
-
case this.FT_ENGINE_MODEL:
|
|
4750
|
-
return "Engine model"
|
|
4751
|
-
case this.FT_VEHICLE_CATEGORY:
|
|
4752
|
-
return "Vehicle category"
|
|
4753
|
-
case this.FT_IDENTITY_CARD_NUMBER:
|
|
4754
|
-
return "Identity card number"
|
|
4755
|
-
case this.FT_CONTROL_NO:
|
|
4756
|
-
return "Control number"
|
|
4757
|
-
case this.FT_PARRENTS_GIVEN_NAMES:
|
|
4758
|
-
return "Parents\' given names"
|
|
4759
|
-
case this.FT_SECOND_SURNAME:
|
|
4760
|
-
return "Second surname"
|
|
4761
|
-
case this.FT_MIDDLE_NAME:
|
|
4762
|
-
return "Middle name"
|
|
4763
|
-
case this.FT_REG_CERT_VIN:
|
|
4764
|
-
return "Vehicle identification number"
|
|
4765
|
-
case this.FT_REG_CERT_VIN_CHECK_DIGIT:
|
|
4766
|
-
return "Check digit for VIN"
|
|
4767
|
-
case this.FT_REG_CERT_VIN_CHECKSUM:
|
|
4768
|
-
return "Checksum for VIN"
|
|
4769
|
-
case this.FT_LINE_1_CHECK_DIGIT:
|
|
4770
|
-
return "Check digit for line 1"
|
|
4771
|
-
case this.FT_LINE_2_CHECK_DIGIT:
|
|
4772
|
-
return "Check digit for line 2"
|
|
4773
|
-
case this.FT_LINE_3_CHECK_DIGIT:
|
|
4774
|
-
return "Check digit for line 3"
|
|
4775
|
-
case this.FT_LINE_1_CHECKSUM:
|
|
4776
|
-
return "Checksum for line 1"
|
|
4777
|
-
case this.FT_LINE_2_CHECKSUM:
|
|
4778
|
-
return "Checksum for line 2"
|
|
4779
|
-
case this.FT_LINE_3_CHECKSUM:
|
|
4780
|
-
return "Checksum for line 3"
|
|
4781
|
-
case this.FT_REG_CERT_REG_NUMBER_CHECK_DIGIT:
|
|
4782
|
-
return "Check digit for registration number"
|
|
4783
|
-
case this.FT_REG_CERT_REG_NUMBER_CHECKSUM:
|
|
4784
|
-
return "Checksum for registration number"
|
|
4785
|
-
case this.FT_REG_CERT_VEHICLE_ITS_CODE:
|
|
4786
|
-
return "Vehicle ITS code"
|
|
4787
|
-
case this.FT_CARD_ACCESS_NUMBER:
|
|
4788
|
-
return "Card access number"
|
|
4789
|
-
case this.FT_MARITAL_STATUS:
|
|
4790
|
-
return "Marital status"
|
|
4791
|
-
case this.FT_COMPANY_NAME:
|
|
4792
|
-
return "Company name"
|
|
4793
|
-
case this.FT_SPECIAL_NOTES:
|
|
4794
|
-
return "Special notes"
|
|
4795
|
-
case this.FT_SURNAME_OF_SPOSE:
|
|
4796
|
-
return "Spouse\'s surname"
|
|
4797
|
-
case this.FT_TRACKING_NUMBER:
|
|
4798
|
-
return "Tracking number"
|
|
4799
|
-
case this.FT_BOOKLET_NUMBER:
|
|
4800
|
-
return "Booklet number"
|
|
4801
|
-
case this.FT_CHILDREN:
|
|
4802
|
-
return "Children"
|
|
4803
|
-
case this.FT_COPY:
|
|
4804
|
-
return "Copy"
|
|
4805
|
-
case this.FT_SERIAL_NUMBER:
|
|
4806
|
-
return "Serial number"
|
|
4807
|
-
case this.FT_DOSSIER_NUMBER:
|
|
4808
|
-
return "Dossier number"
|
|
4809
|
-
case this.FT_AKA_SURNAME_AND_GIVEN_NAMES:
|
|
4810
|
-
return "AKA: Surname and given names"
|
|
4811
|
-
case this.FT_TERRITORIAL_VALIDITY:
|
|
4812
|
-
return "Territorial validity"
|
|
4813
|
-
case this.FT_MRZ_STRINGS_WITH_CORRECT_CHECK_SUMS:
|
|
4814
|
-
return "MRZ lines with correct checksums"
|
|
4815
|
-
case this.FT_DL_CDL_RESTRICTION_CODE:
|
|
4816
|
-
return "CDL Restriction Code"
|
|
4817
|
-
case this.FT_DL_UNDER_18_DATE:
|
|
4818
|
-
return "Date of 18th birthday"
|
|
4819
|
-
case this.FT_DL_RECORD_CREATED:
|
|
4820
|
-
return "Record created"
|
|
4821
|
-
case this.FT_DL_DUPLICATE_DATE:
|
|
4822
|
-
return "Date of duplicate issue"
|
|
4823
|
-
case this.FT_DL_ISS_TYPE:
|
|
4824
|
-
return "Card type"
|
|
4825
|
-
case this.FT_MILITARY_BOOK_NUMBER:
|
|
4826
|
-
return "Military ID number"
|
|
4827
|
-
case this.FT_DESTINATION:
|
|
4828
|
-
return "Destination"
|
|
4829
|
-
case this.FT_BLOOD_GROUP:
|
|
4830
|
-
return "Blood group"
|
|
4831
|
-
case this.FT_SEQUENCE_NUMBER:
|
|
4832
|
-
return "Sequence number"
|
|
4833
|
-
case this.FT_REG_CERT_BODY_TYPE:
|
|
4834
|
-
return "Body type"
|
|
4835
|
-
case this.FT_REG_CERT_CAR_MARK:
|
|
4836
|
-
return "Vehicle make"
|
|
4837
|
-
case this.FT_TRANSACTION_NUMBER:
|
|
4838
|
-
return "Transaction number"
|
|
4839
|
-
case this.FT_AGE:
|
|
4840
|
-
return "Age"
|
|
4841
|
-
case this.FT_FOLIO_NUMBER:
|
|
4842
|
-
return "Folio number"
|
|
4843
|
-
case this.FT_VOTER_KEY:
|
|
4844
|
-
return "Voter Key"
|
|
4845
|
-
case this.FT_ADDRESS_MUNICIPALITY:
|
|
4846
|
-
return "Municipality"
|
|
4847
|
-
case this.FT_ADDRESS_LOCATION:
|
|
4848
|
-
return "Location"
|
|
4849
|
-
case this.FT_SECTION:
|
|
4850
|
-
return "Section"
|
|
4851
|
-
case this.FT_OCR_NUMBER:
|
|
4852
|
-
return "OCR number"
|
|
4853
|
-
case this.FT_FEDERAL_ELECTIONS:
|
|
4854
|
-
return "Federal elections"
|
|
4855
|
-
case this.FT_REFERENCE_NUMBER:
|
|
4856
|
-
return "Unique number"
|
|
4857
|
-
case this.FT_OPTIONAL_DATA_CHECKSUM:
|
|
4858
|
-
return "Checksum for optional data"
|
|
4859
|
-
case this.FT_OPTIONAL_DATA_CHECK_DIGIT:
|
|
4860
|
-
return "Check digit for optional data"
|
|
4861
|
-
case this.FT_VISA_NUMBER:
|
|
4862
|
-
return "Visa Number"
|
|
4863
|
-
case this.FT_VISA_NUMBER_CHECKSUM:
|
|
4864
|
-
return "Checksum for visa number"
|
|
4865
|
-
case this.FT_VISA_NUMBER_CHECK_DIGIT:
|
|
4866
|
-
return "Check digit for visa number"
|
|
4867
|
-
case this.FT_VOTER:
|
|
4868
|
-
return "Voter"
|
|
4869
|
-
case this.FT_PREVIOUS_TYPE:
|
|
4870
|
-
return "Type/number of the previous document"
|
|
4871
|
-
case this.FT_FIELD_FROM_MRZ:
|
|
4872
|
-
return "Field from MRZ"
|
|
4873
|
-
case this.FT_CURRENT_DATE:
|
|
4874
|
-
return "Current date"
|
|
4875
|
-
case this.FT_STATUS_DATE_OF_EXPIRY:
|
|
4876
|
-
return "Status Expiry Date"
|
|
4877
|
-
case this.FT_BANKNOTE_NUMBER:
|
|
4878
|
-
return "Banknote number"
|
|
4879
|
-
case this.FT_CSC_CODE:
|
|
4880
|
-
return "CSC Code"
|
|
4881
|
-
case this.FT_ARTISTIC_NAME:
|
|
4882
|
-
return "Pseudonym"
|
|
4883
|
-
case this.FT_ACADEMIC_TITLE:
|
|
4884
|
-
return "Academic title"
|
|
4885
|
-
case this.FT_ADDRESS_COUNTRY:
|
|
4886
|
-
return "Country"
|
|
4887
|
-
case this.FT_ADDRESS_ZIPCODE:
|
|
4888
|
-
return "ZIP code"
|
|
4889
|
-
case this.FT_E_ID_RESIDENCE_PERMIT_1:
|
|
4890
|
-
return "Residence permit 1"
|
|
4891
|
-
case this.FT_E_ID_RESIDENCE_PERMIT_2:
|
|
4892
|
-
return "Residence permit 2"
|
|
4893
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_STREET:
|
|
4894
|
-
return "Place of birth: Street"
|
|
4895
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_CITY:
|
|
4896
|
-
return "Place of birth: City"
|
|
4897
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_STATE:
|
|
4898
|
-
return "Place of birth: State"
|
|
4899
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_COUNTRY:
|
|
4900
|
-
return "Place of birth: Country"
|
|
4901
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_ZIPCODE:
|
|
4902
|
-
return "Place of birth: Postal code"
|
|
4903
|
-
case this.FT_CDL_CLASS:
|
|
4904
|
-
return "CDL Class"
|
|
4905
|
-
case this.FT_DL_UNDER_19_DATE:
|
|
4906
|
-
return "Date of 19th birthday"
|
|
4907
|
-
case this.FT_WEIGHT_POUNDS:
|
|
4908
|
-
return "Weight (pound)"
|
|
4909
|
-
case this.FT_LIMITED_DURATION_DOCUMENT_INDICATOR:
|
|
4910
|
-
return "Indicator of document limited duration"
|
|
4911
|
-
case this.FT_ENDORSEMENT_EXPIRATION_DATE:
|
|
4912
|
-
return "Endorsement expiration date"
|
|
4913
|
-
case this.FT_REVISION_DATE:
|
|
4914
|
-
return "Revision date"
|
|
4915
|
-
case this.FT_COMPLIANCE_TYPE:
|
|
4916
|
-
return "Compliance type"
|
|
4917
|
-
case this.FT_FAMILY_NAME_TRUNCATION:
|
|
4918
|
-
return "Truncated surname/given name at birth"
|
|
4919
|
-
case this.FT_FIRST_NAME_TRUNCATION:
|
|
4920
|
-
return "First name truncation"
|
|
4921
|
-
case this.FT_MIDDLE_NAME_TRUNCATION:
|
|
4922
|
-
return "Middle name truncation"
|
|
4923
|
-
case this.FT_EXAM_DATE:
|
|
4924
|
-
return "Exam date"
|
|
4925
|
-
case this.FT_ORGANIZATION:
|
|
4926
|
-
return "Organization"
|
|
4927
|
-
case this.FT_DEPARTMENT:
|
|
4928
|
-
return "Department"
|
|
4929
|
-
case this.FT_PAY_GRADE:
|
|
4930
|
-
return "Pay grade"
|
|
4931
|
-
case this.FT_RANK:
|
|
4932
|
-
return "Rank"
|
|
4933
|
-
case this.FT_BENEFITS_NUMBER:
|
|
4934
|
-
return "Benefits number"
|
|
4935
|
-
case this.FT_SPONSOR_SERVICE:
|
|
4936
|
-
return "Sponsor service"
|
|
4937
|
-
case this.FT_SPONSOR_STATUS:
|
|
4938
|
-
return "Sponsor status"
|
|
4939
|
-
case this.FT_SPONSOR:
|
|
4940
|
-
return "Sponsor"
|
|
4941
|
-
case this.FT_RELATIONSHIP:
|
|
4942
|
-
return "Relationship"
|
|
4943
|
-
case this.FT_USCIS:
|
|
4944
|
-
return "USCIS"
|
|
4945
|
-
case this.FT_CATEGORY:
|
|
4946
|
-
return "Category"
|
|
4947
|
-
case this.FT_CONDITIONS:
|
|
4948
|
-
return "Conditions"
|
|
4949
|
-
case this.FT_IDENTIFIER:
|
|
4950
|
-
return "Identifier"
|
|
4951
|
-
case this.FT_CONFIGURATION:
|
|
4952
|
-
return "Configuration"
|
|
4953
|
-
case this.FT_DISCRETIONARY_DATA:
|
|
4954
|
-
return "Discretionary data"
|
|
4955
|
-
case this.FT_LINE_1_OPTIONAL_DATA:
|
|
4956
|
-
return "Optional data from line 1"
|
|
4957
|
-
case this.FT_LINE_2_OPTIONAL_DATA:
|
|
4958
|
-
return "Optional data from line 2"
|
|
4959
|
-
case this.FT_LINE_3_OPTIONAL_DATA:
|
|
4960
|
-
return "Optional data from line 3"
|
|
4961
|
-
case this.FT_EQV_CODE:
|
|
4962
|
-
return "EQV code"
|
|
4963
|
-
case this.FT_ALT_CODE:
|
|
4964
|
-
return "ALT code"
|
|
4965
|
-
case this.FT_BINARY_CODE:
|
|
4966
|
-
return "Binary code"
|
|
4967
|
-
case this.FT_PSEUDO_CODE:
|
|
4968
|
-
return "Pseudocode"
|
|
4969
|
-
case this.FT_FEE:
|
|
4970
|
-
return "Fee"
|
|
4971
|
-
case this.FT_STAMP_NUMBER:
|
|
4972
|
-
return "Stamp number"
|
|
4973
|
-
case this.FT_GNIB_NUMBER:
|
|
4974
|
-
return "GNIB number"
|
|
4975
|
-
case this.FT_DEPT_NUMBER:
|
|
4976
|
-
return "Department number"
|
|
4977
|
-
case this.FT_TELEX_CODE:
|
|
4978
|
-
return "Telegraph code"
|
|
4979
|
-
case this.FT_ALLERGIES:
|
|
4980
|
-
return "Allergies"
|
|
4981
|
-
case this.FT_SP_CODE:
|
|
4982
|
-
return "Special code"
|
|
4983
|
-
case this.FT_COURT_CODE:
|
|
4984
|
-
return "Court code"
|
|
4985
|
-
case this.FT_CTY:
|
|
4986
|
-
return "County"
|
|
4987
|
-
case this.FT_SPONSOR_SSN:
|
|
4988
|
-
return "Sponsor SSN"
|
|
4989
|
-
case this.FT_DO_D_NUMBER:
|
|
4990
|
-
return "DoD number"
|
|
4991
|
-
case this.FT_MC_NOVICE_DATE:
|
|
4992
|
-
return "Expiry date of Motorcycle Novice status"
|
|
4993
|
-
case this.FT_DUF_NUMBER:
|
|
4994
|
-
return "DUF number"
|
|
4995
|
-
case this.FT_AGY:
|
|
4996
|
-
return "AGY"
|
|
4997
|
-
case this.FT_PNR_CODE:
|
|
4998
|
-
return "PNR code"
|
|
4999
|
-
case this.FT_FROM_AIRPORT_CODE:
|
|
5000
|
-
return "Code of the airport of departure"
|
|
5001
|
-
case this.FT_TO_AIRPORT_CODE:
|
|
5002
|
-
return "Code of the airport of arrival"
|
|
5003
|
-
case this.FT_FLIGHT_NUMBER:
|
|
5004
|
-
return "Flight number"
|
|
5005
|
-
case this.FT_DATE_OF_FLIGHT:
|
|
5006
|
-
return "Date of flight"
|
|
5007
|
-
case this.FT_SEAT_NUMBER:
|
|
5008
|
-
return "Seat number"
|
|
5009
|
-
case this.FT_DATE_OF_ISSUE_BOARDING_PASS:
|
|
5010
|
-
return "Date of boarding pass issue"
|
|
5011
|
-
case this.FT_CCW_UNTIL:
|
|
5012
|
-
return "CCW until"
|
|
5013
|
-
case this.FT_REFERENCE_NUMBER_CHECKSUM:
|
|
5014
|
-
return "Unique number checksum"
|
|
5015
|
-
case this.FT_REFERENCE_NUMBER_CHECK_DIGIT:
|
|
5016
|
-
return "Unique number check digit"
|
|
5017
|
-
case this.FT_ROOM_NUMBER:
|
|
5018
|
-
return "Room number"
|
|
5019
|
-
case this.FT_RELIGION:
|
|
5020
|
-
return "Religion"
|
|
5021
|
-
case this.FT_REMAINDER_TERM:
|
|
5022
|
-
return "Months to expire"
|
|
5023
|
-
case this.FT_ELECTRONIC_TICKET_INDICATOR:
|
|
5024
|
-
return "Electronic ticket indicator"
|
|
5025
|
-
case this.FT_COMPARTMENT_CODE:
|
|
5026
|
-
return "Compartment code"
|
|
5027
|
-
case this.FT_CHECK_IN_SEQUENCE_NUMBER:
|
|
5028
|
-
return "Check-in sequence number"
|
|
5029
|
-
case this.FT_AIRLINE_DESIGNATOR_OF_BOARDING_PASS_ISSUER:
|
|
5030
|
-
return "Airline designator of boarding pass issuer"
|
|
5031
|
-
case this.FT_AIRLINE_NUMERIC_CODE:
|
|
5032
|
-
return "Airline numeric code"
|
|
5033
|
-
case this.FT_TICKET_NUMBER:
|
|
5034
|
-
return "Ticket number"
|
|
5035
|
-
case this.FT_FREQUENT_FLYER_AIRLINE_DESIGNATOR:
|
|
5036
|
-
return "Frequent flyer airline designator"
|
|
5037
|
-
case this.FT_FREQUENT_FLYER_NUMBER:
|
|
5038
|
-
return "Frequent flyer number"
|
|
5039
|
-
case this.FT_FREE_BAGGAGE_ALLOWANCE:
|
|
5040
|
-
return "Free baggage allowance"
|
|
5041
|
-
case this.FT_PDF_417_CODEC:
|
|
5042
|
-
return "PDF417 codec"
|
|
5043
|
-
case this.FT_IDENTITY_CARD_NUMBER_CHECKSUM:
|
|
5044
|
-
return "Checksum for identity card number"
|
|
5045
|
-
case this.FT_IDENTITY_CARD_NUMBER_CHECK_DIGIT:
|
|
5046
|
-
return "Check digit for identity card number"
|
|
5047
|
-
case this.FT_VETERAN:
|
|
5048
|
-
return "Veteran"
|
|
5049
|
-
case this.FT_DL_CLASS_CODE_A_1_FROM:
|
|
5050
|
-
return "DL category A1 valid from"
|
|
5051
|
-
case this.FT_DL_CLASS_CODE_A_1_TO:
|
|
5052
|
-
return "DL category A1 valid to"
|
|
5053
|
-
case this.FT_DL_CLASS_CODE_A_1_NOTES:
|
|
5054
|
-
return "DL category A1 codes"
|
|
5055
|
-
case this.FT_DL_CLASS_CODE_A_FROM:
|
|
5056
|
-
return "DL category A valid from"
|
|
5057
|
-
case this.FT_DL_CLASS_CODE_A_TO:
|
|
5058
|
-
return "DL category A valid to"
|
|
5059
|
-
case this.FT_DL_CLASS_CODE_A_NOTES:
|
|
5060
|
-
return "DL category A codes"
|
|
5061
|
-
case this.FT_DL_CLASS_CODE_B_FROM:
|
|
5062
|
-
return "DL category B valid from"
|
|
5063
|
-
case this.FT_DL_CLASS_CODE_B_TO:
|
|
5064
|
-
return "DL category B valid to"
|
|
5065
|
-
case this.FT_DL_CLASS_CODE_B_NOTES:
|
|
5066
|
-
return "DL category B codes"
|
|
5067
|
-
case this.FT_DL_CLASS_CODE_C_1_FROM:
|
|
5068
|
-
return "DL category C1 valid from"
|
|
5069
|
-
case this.FT_DL_CLASS_CODE_C_1_TO:
|
|
5070
|
-
return "DL category C1 valid to"
|
|
5071
|
-
case this.FT_DL_CLASS_CODE_C_1_NOTES:
|
|
5072
|
-
return "DL category C1 codes"
|
|
5073
|
-
case this.FT_DL_CLASS_CODE_C_FROM:
|
|
5074
|
-
return "DL category C valid from"
|
|
5075
|
-
case this.FT_DL_CLASS_CODE_C_TO:
|
|
5076
|
-
return "DL category C valid to"
|
|
5077
|
-
case this.FT_DL_CLASS_CODE_C_NOTES:
|
|
5078
|
-
return "DL category C codes"
|
|
5079
|
-
case this.FT_DL_CLASS_CODE_D_1_FROM:
|
|
5080
|
-
return "DL category D1 valid from"
|
|
5081
|
-
case this.FT_DL_CLASS_CODE_D_1_TO:
|
|
5082
|
-
return "DL category D1 valid to"
|
|
5083
|
-
case this.FT_DL_CLASS_CODE_D_1_NOTES:
|
|
5084
|
-
return "DL category D1 codes"
|
|
5085
|
-
case this.FT_DL_CLASS_CODE_D_FROM:
|
|
5086
|
-
return "DL category D valid from"
|
|
5087
|
-
case this.FT_DL_CLASS_CODE_D_TO:
|
|
5088
|
-
return "DL category D valid to"
|
|
5089
|
-
case this.FT_DL_CLASS_CODE_D_NOTES:
|
|
5090
|
-
return "DL category D codes"
|
|
5091
|
-
case this.FT_DL_CLASS_CODE_BE_FROM:
|
|
5092
|
-
return "DL category BE valid from"
|
|
5093
|
-
case this.FT_DL_CLASS_CODE_BE_TO:
|
|
5094
|
-
return "DL category BE valid to"
|
|
5095
|
-
case this.FT_DL_CLASS_CODE_BE_NOTES:
|
|
5096
|
-
return "DL category BE codes"
|
|
5097
|
-
case this.FT_DL_CLASS_CODE_C_1_E_FROM:
|
|
5098
|
-
return "DL category C1E valid from"
|
|
5099
|
-
case this.FT_DL_CLASS_CODE_C_1_E_TO:
|
|
5100
|
-
return "DL category C1E valid to"
|
|
5101
|
-
case this.FT_DL_CLASS_CODE_C_1_E_NOTES:
|
|
5102
|
-
return "DL category C1E codes"
|
|
5103
|
-
case this.FT_DL_CLASS_CODE_CE_FROM:
|
|
5104
|
-
return "DL category CE valid from"
|
|
5105
|
-
case this.FT_DL_CLASS_CODE_CE_TO:
|
|
5106
|
-
return "DL category CE valid to"
|
|
5107
|
-
case this.FT_DL_CLASS_CODE_CE_NOTES:
|
|
5108
|
-
return "DL category CE codes"
|
|
5109
|
-
case this.FT_DL_CLASS_CODE_D_1_E_FROM:
|
|
5110
|
-
return "DL category D1E valid from"
|
|
5111
|
-
case this.FT_DL_CLASS_CODE_D_1_E_TO:
|
|
5112
|
-
return "DL category D1E valid to"
|
|
5113
|
-
case this.FT_DL_CLASS_CODE_D_1_E_NOTES:
|
|
5114
|
-
return "DL category D1E codes"
|
|
5115
|
-
case this.FT_DL_CLASS_CODE_DE_FROM:
|
|
5116
|
-
return "DL category DE valid from"
|
|
5117
|
-
case this.FT_DL_CLASS_CODE_DE_TO:
|
|
5118
|
-
return "DL category DE valid to"
|
|
5119
|
-
case this.FT_DL_CLASS_CODE_DE_NOTES:
|
|
5120
|
-
return "DL category DE codes"
|
|
5121
|
-
case this.FT_DL_CLASS_CODE_M_FROM:
|
|
5122
|
-
return "DL category M valid from"
|
|
5123
|
-
case this.FT_DL_CLASS_CODE_M_TO:
|
|
5124
|
-
return "DL category M valid to"
|
|
5125
|
-
case this.FT_DL_CLASS_CODE_M_NOTES:
|
|
5126
|
-
return "DL category M codes"
|
|
5127
|
-
case this.FT_DL_CLASS_CODE_L_FROM:
|
|
5128
|
-
return "DL category L valid from"
|
|
5129
|
-
case this.FT_DL_CLASS_CODE_L_TO:
|
|
5130
|
-
return "DL category L valid to"
|
|
5131
|
-
case this.FT_DL_CLASS_CODE_L_NOTES:
|
|
5132
|
-
return "DL category L codes"
|
|
5133
|
-
case this.FT_DL_CLASS_CODE_T_FROM:
|
|
5134
|
-
return "DL category T valid from"
|
|
5135
|
-
case this.FT_DL_CLASS_CODE_T_TO:
|
|
5136
|
-
return "DL category T valid to"
|
|
5137
|
-
case this.FT_DL_CLASS_CODE_T_NOTES:
|
|
5138
|
-
return "DL category T codes"
|
|
5139
|
-
case this.FT_DL_CLASS_CODE_AM_FROM:
|
|
5140
|
-
return "DL category AM valid from"
|
|
5141
|
-
case this.FT_DL_CLASS_CODE_AM_TO:
|
|
5142
|
-
return "DL category AM valid to"
|
|
5143
|
-
case this.FT_DL_CLASS_CODE_AM_NOTES:
|
|
5144
|
-
return "DL category AM codes"
|
|
5145
|
-
case this.FT_DL_CLASS_CODE_A_2_FROM:
|
|
5146
|
-
return "DL category A2 valid from"
|
|
5147
|
-
case this.FT_DL_CLASS_CODE_A_2_TO:
|
|
5148
|
-
return "DL category A2 valid to"
|
|
5149
|
-
case this.FT_DL_CLASS_CODE_A_2_NOTES:
|
|
5150
|
-
return "DL category A2 codes"
|
|
5151
|
-
case this.FT_DL_CLASS_CODE_B_1_FROM:
|
|
5152
|
-
return "DL category B1 valid from"
|
|
5153
|
-
case this.FT_DL_CLASS_CODE_B_1_TO:
|
|
5154
|
-
return "DL category B1 valid to"
|
|
5155
|
-
case this.FT_DL_CLASS_CODE_B_1_NOTES:
|
|
5156
|
-
return "DL category B1 codes"
|
|
5157
|
-
case this.FT_SURNAME_AT_BIRTH:
|
|
5158
|
-
return "Surname at birth"
|
|
5159
|
-
case this.FT_CIVIL_STATUS:
|
|
5160
|
-
return "Civil status"
|
|
5161
|
-
case this.FT_NUMBER_OF_SEATS:
|
|
5162
|
-
return "Number of seats"
|
|
5163
|
-
case this.FT_NUMBER_OF_STANDING_PLACES:
|
|
5164
|
-
return "Number of standing places"
|
|
5165
|
-
case this.FT_MAX_SPEED:
|
|
5166
|
-
return "Max speed"
|
|
5167
|
-
case this.FT_FUEL_TYPE:
|
|
5168
|
-
return "Fuel type"
|
|
5169
|
-
case this.FT_EC_ENVIRONMENTAL_TYPE:
|
|
5170
|
-
return "Vehicle environmental type"
|
|
5171
|
-
case this.FT_POWER_WEIGHT_RATIO:
|
|
5172
|
-
return "Power-to-weight ratio"
|
|
5173
|
-
case this.FT_MAX_MASS_OF_TRAILER_BRAKED:
|
|
5174
|
-
return "Max mass of trailer (braked)"
|
|
5175
|
-
case this.FT_MAX_MASS_OF_TRAILER_UNBRAKED:
|
|
5176
|
-
return "Max mass of trailer (unbraked)"
|
|
5177
|
-
case this.FT_TRANSMISSION_TYPE:
|
|
5178
|
-
return "Transmission type"
|
|
5179
|
-
case this.FT_TRAILER_HITCH:
|
|
5180
|
-
return "Trailer hitch"
|
|
5181
|
-
case this.FT_ACCOMPANIED_BY:
|
|
5182
|
-
return "Accompanied by"
|
|
5183
|
-
case this.FT_POLICE_DISTRICT:
|
|
5184
|
-
return "Police district"
|
|
5185
|
-
case this.FT_FIRST_ISSUE_DATE:
|
|
5186
|
-
return "First issue date"
|
|
5187
|
-
case this.FT_PAYLOAD_CAPACITY:
|
|
5188
|
-
return "Payload capacity"
|
|
5189
|
-
case this.FT_NUMBER_OF_AXELS:
|
|
5190
|
-
return "Number of axles"
|
|
5191
|
-
case this.FT_PERMISSIBLE_AXLE_LOAD:
|
|
5192
|
-
return "Permissible axle load"
|
|
5193
|
-
case this.FT_PRECINCT:
|
|
5194
|
-
return "Precinct"
|
|
5195
|
-
case this.FT_INVITED_BY:
|
|
5196
|
-
return "Invited by"
|
|
5197
|
-
case this.FT_PURPOSE_OF_ENTRY:
|
|
5198
|
-
return "Purpose of entry"
|
|
5199
|
-
case this.FT_SKIN_COLOR:
|
|
5200
|
-
return "Skin color"
|
|
5201
|
-
case this.FT_COMPLEXION:
|
|
5202
|
-
return "Complexion"
|
|
5203
|
-
case this.FT_AIRPORT_FROM:
|
|
5204
|
-
return "Airport of departure"
|
|
5205
|
-
case this.FT_AIRPORT_TO:
|
|
5206
|
-
return "Airport of arrival"
|
|
5207
|
-
case this.FT_AIRLINE_NAME:
|
|
5208
|
-
return "Airline name"
|
|
5209
|
-
case this.FT_AIRLINE_NAME_FREQUENT_FLYER:
|
|
5210
|
-
return "Airline loyalty program for frequent flyers"
|
|
5211
|
-
case this.FT_LICENSE_NUMBER:
|
|
5212
|
-
return "License number"
|
|
5213
|
-
case this.FT_IN_TANKS:
|
|
5214
|
-
return "In tanks"
|
|
5215
|
-
case this.FT_EXEPT_IN_TANKS:
|
|
5216
|
-
return "Other than tanks"
|
|
5217
|
-
case this.FT_FAST_TRACK:
|
|
5218
|
-
return "Fast Track service"
|
|
5219
|
-
case this.FT_OWNER:
|
|
5220
|
-
return "Owner"
|
|
5221
|
-
case this.FT_MRZ_STRINGS_ICAO_RFID:
|
|
5222
|
-
return "MRZ lines from ICAO RFID"
|
|
5223
|
-
case this.FT_NUMBER_OF_CARD_ISSUANCE:
|
|
5224
|
-
return "Number of card issuances"
|
|
5225
|
-
case this.FT_NUMBER_OF_CARD_ISSUANCE_CHECKSUM:
|
|
5226
|
-
return "Checksum for number of card issuances"
|
|
5227
|
-
case this.FT_NUMBER_OF_CARD_ISSUANCE_CHECK_DIGIT:
|
|
5228
|
-
return "Check digit for number of card issuances"
|
|
5229
|
-
case this.FT_CENTURY_DATE_OF_BIRTH:
|
|
5230
|
-
return "Century of birth"
|
|
5231
|
-
case this.FT_DL_CLASSCODE_A3_FROM:
|
|
5232
|
-
return "DL category A3 valid from"
|
|
5233
|
-
case this.FT_DL_CLASSCODE_A3_TO:
|
|
5234
|
-
return "DL category A3 valid to"
|
|
5235
|
-
case this.FT_DL_CLASSCODE_A3_NOTES:
|
|
5236
|
-
return "DL category A3 codes"
|
|
5237
|
-
case this.FT_DL_CLASSCODE_C2_FROM:
|
|
5238
|
-
return "DL category C2 valid from"
|
|
5239
|
-
case this.FT_DL_CLASSCODE_C2_TO:
|
|
5240
|
-
return "DL category C2 valid to"
|
|
5241
|
-
case this.FT_DL_CLASSCODE_C2_NOTES:
|
|
5242
|
-
return "DL category C2 codes"
|
|
5243
|
-
case this.FT_DL_CLASSCODE_B2_FROM:
|
|
5244
|
-
return "DL category B2 valid from"
|
|
5245
|
-
case this.FT_DL_CLASSCODE_B2_TO:
|
|
5246
|
-
return "DL category B2 valid to"
|
|
5247
|
-
case this.FT_DL_CLASSCODE_B2_NOTES:
|
|
5248
|
-
return "DL category B2 codes"
|
|
5249
|
-
case this.FT_DL_CLASSCODE_D2_FROM:
|
|
5250
|
-
return "DL category D2 valid from"
|
|
5251
|
-
case this.FT_DL_CLASSCODE_D2_TO:
|
|
5252
|
-
return "DL category D2 valid to"
|
|
5253
|
-
case this.FT_DL_CLASSCODE_D2_NOTES:
|
|
5254
|
-
return "DL category D2 codes"
|
|
5255
|
-
case this.FT_DL_CLASSCODE_B2E_FROM:
|
|
5256
|
-
return "DL category B2E valid from"
|
|
5257
|
-
case this.FT_DL_CLASSCODE_B2E_TO:
|
|
5258
|
-
return "DL category B2E valid to"
|
|
5259
|
-
case this.FT_DL_CLASSCODE_B2E_NOTES:
|
|
5260
|
-
return "DL category B2E codes"
|
|
5261
|
-
case this.FT_DL_CLASSCODE_G_FROM:
|
|
5262
|
-
return "DL category G valid from"
|
|
5263
|
-
case this.FT_DL_CLASSCODE_G_TO:
|
|
5264
|
-
return "DL category G valid to"
|
|
5265
|
-
case this.FT_DL_CLASSCODE_G_NOTES:
|
|
5266
|
-
return "DL category G codes"
|
|
5267
|
-
case this.FT_DL_CLASSCODE_J_FROM:
|
|
5268
|
-
return "DL category J valid from"
|
|
5269
|
-
case this.FT_DL_CLASSCODE_J_TO:
|
|
5270
|
-
return "DL category J valid to"
|
|
5271
|
-
case this.FT_DL_CLASSCODE_J_NOTES:
|
|
5272
|
-
return "DL category J codes"
|
|
5273
|
-
case this.FT_DL_CLASSCODE_LC_FROM:
|
|
5274
|
-
return "DL category LC valid from"
|
|
5275
|
-
case this.FT_DL_CLASSCODE_LC_TO:
|
|
5276
|
-
return "DL category LC valid to"
|
|
5277
|
-
case this.FT_DLC_LASSCODE_LC_NOTES:
|
|
5278
|
-
return "DL category LC codes"
|
|
5279
|
-
case this.FT_BANKCARDNUMBER:
|
|
5280
|
-
return "Bank card number"
|
|
5281
|
-
case this.FT_BANKCARDVALIDTHRU:
|
|
5282
|
-
return "Bank card validity"
|
|
5283
|
-
case this.FT_TAX_NUMBER:
|
|
5284
|
-
return "Tax number"
|
|
5285
|
-
case this.FT_SBH_SECURITYOPTIONS:
|
|
5286
|
-
return "SBH security options"
|
|
5287
|
-
case this.FT_SBH_INTEGRITYOPTIONS:
|
|
5288
|
-
return "SBH integrity options"
|
|
5289
|
-
case this.FT_DATE_OF_CREATION:
|
|
5290
|
-
return "Creation date"
|
|
5291
|
-
case this.FT_VALIDITY_PERIOD:
|
|
5292
|
-
return "Validity period"
|
|
5293
|
-
case this.FT_PATRON_HEADER_VERSION:
|
|
5294
|
-
return "Patron header version"
|
|
5295
|
-
case this.FT_BDB_TYPE:
|
|
5296
|
-
return "BDB type"
|
|
5297
|
-
case this.FT_BIOMETRIC_TYPE:
|
|
5298
|
-
return "Biometric type"
|
|
5299
|
-
case this.FT_BIOMETRIC_SUBTYPE:
|
|
5300
|
-
return "Biometric subtype"
|
|
5301
|
-
case this.FT_BIOMETRIC_PRODUCTID:
|
|
5302
|
-
return "Biometric product ID"
|
|
5303
|
-
case this.FT_BIOMETRIC_FORMAT_OWNER:
|
|
5304
|
-
return "Biometric format owner"
|
|
5305
|
-
case this.FT_BIOMETRIC_FORMAT_TYPE:
|
|
5306
|
-
return "Biometric format type"
|
|
5307
|
-
case this.FT_PHONE:
|
|
5308
|
-
return "Phone"
|
|
5309
|
-
case this.FT_PROFESSION:
|
|
5310
|
-
return "Profession"
|
|
5311
|
-
case this.FT_TITLE:
|
|
5312
|
-
return "Position"
|
|
5313
|
-
case this.FT_PERSONAL_SUMMARY:
|
|
5314
|
-
return "Personal data summary"
|
|
5315
|
-
case this.FT_OTHER_VALID_ID:
|
|
5316
|
-
return "Other valid IDs"
|
|
5317
|
-
case this.FT_CUSTODY_INFO:
|
|
5318
|
-
return "Custody info"
|
|
5319
|
-
case this.FT_OTHER_NAME:
|
|
5320
|
-
return "Other name"
|
|
5321
|
-
case this.FT_OBSERVATIONS:
|
|
5322
|
-
return "Observations"
|
|
5323
|
-
case this.FT_TAX:
|
|
5324
|
-
return "Tax"
|
|
5325
|
-
case this.FT_DATE_OF_PERSONALIZATION:
|
|
5326
|
-
return "Personalization date"
|
|
5327
|
-
case this.FT_PERSONALIZATION_SN:
|
|
5328
|
-
return "Serial number of personalization"
|
|
5329
|
-
case this.FT_OTHERPERSON_NAME:
|
|
5330
|
-
return "Other person, name"
|
|
5331
|
-
case this.FT_PERSONTONOTIFY_DATE_OF_RECORD:
|
|
5332
|
-
return "Notify person: Date of record"
|
|
5333
|
-
case this.FT_PERSONTONOTIFY_NAME:
|
|
5334
|
-
return "Notify person: Name"
|
|
5335
|
-
case this.FT_PERSONTONOTIFY_PHONE:
|
|
5336
|
-
return "Notify person: Phone"
|
|
5337
|
-
case this.FT_PERSONTONOTIFY_ADDRESS:
|
|
5338
|
-
return "Notify person: Address"
|
|
5339
|
-
case this.FT_DS_CERTIFICATE_ISSUER:
|
|
5340
|
-
return "DS certificate issuer"
|
|
5341
|
-
case this.FT_DS_CERTIFICATE_SUBJECT:
|
|
5342
|
-
return "DS certificate subject"
|
|
5343
|
-
case this.FT_DS_CERTIFICATE_VALIDFROM:
|
|
5344
|
-
return "DS certificate valid from"
|
|
5345
|
-
case this.FT_DS_CERTIFICATE_VALIDTO:
|
|
5346
|
-
return "DS certificate valid to"
|
|
5347
|
-
case this.FT_VRC_DATAOBJECT_ENTRY:
|
|
5348
|
-
return "Vehicle data from the DG1 data group"
|
|
5349
|
-
case this.FT_GRANDFATHERNAME:
|
|
5350
|
-
return "Grandfather\'s name"
|
|
5351
|
-
case this.FT_HEALTH_NUMBER:
|
|
5352
|
-
return "Health insurance number"
|
|
5353
|
-
case this.FT_TYPE_APPROVAL_NUMBER:
|
|
5354
|
-
return "Type of approval number"
|
|
5355
|
-
case this.FT_ADMINISTRATIVE_NUMBER:
|
|
5356
|
-
return "Administrative number"
|
|
5357
|
-
case this.FT_DOCUMENT_DISCRIMINATOR:
|
|
5358
|
-
return "Document discriminator"
|
|
5359
|
-
case this.FT_DATA_DISCRIMINATOR:
|
|
5360
|
-
return "Data discriminator"
|
|
5361
|
-
case this.FT_ISO_ISSUER_ID_NUMBER:
|
|
5362
|
-
return "ID number of ISO issuer"
|
|
5363
|
-
case this.FT_SELECTEE_INDICATOR:
|
|
5364
|
-
return "Selectee indicator"
|
|
5365
|
-
case this.FT_MOTHER_SURNAME:
|
|
5366
|
-
return "Mother\'s surname"
|
|
5367
|
-
case this.FT_MOTHER_GIVENNAME:
|
|
5368
|
-
return "Mother\'s given name"
|
|
5369
|
-
case this.FT_FATHER_SURNAME:
|
|
5370
|
-
return "Father\'s surname"
|
|
5371
|
-
case this.FT_FATHER_GIVENNAME:
|
|
5372
|
-
return "Father\'s given name"
|
|
5373
|
-
case this.FT_MOTHER_DATEOFBIRTH:
|
|
5374
|
-
return "Mother\'s date of birth"
|
|
5375
|
-
case this.FT_FATHER_DATEOFBIRTH:
|
|
5376
|
-
return "Father\'s date of birth"
|
|
5377
|
-
case this.FT_MOTHER_PERSONALNUMBER:
|
|
5378
|
-
return "Mother\'s personal number"
|
|
5379
|
-
case this.FT_FATHER_PERSONALNUMBER:
|
|
5380
|
-
return "Father\'s personal number"
|
|
5381
|
-
case this.FT_MOTHER_PLACEOFBIRTH:
|
|
5382
|
-
return "Mother\'s place of birth"
|
|
5383
|
-
case this.FT_FATHER_PLACEOFBIRTH:
|
|
5384
|
-
return "Father\'s place of birth"
|
|
5385
|
-
case this.FT_MOTHER_COUNTRYOFBIRTH:
|
|
5386
|
-
return "Mother\'s country of birth"
|
|
5387
|
-
case this.FT_FATHER_COUNTRYOFBIRTH:
|
|
5388
|
-
return "Father\'s country of birth"
|
|
5389
|
-
case this.FT_DATE_FIRST_RENEWAL:
|
|
5390
|
-
return "Date of first renewal"
|
|
5391
|
-
case this.FT_DATE_SECOND_RENEWAL:
|
|
5392
|
-
return "Date of second renewal"
|
|
5393
|
-
case this.FT_PLACE_OF_EXAMINATION:
|
|
5394
|
-
return "Place of examination"
|
|
5395
|
-
case this.FT_APPLICATION_NUMBER:
|
|
5396
|
-
return "Application number"
|
|
5397
|
-
case this.FT_VOUCHER_NUMBER:
|
|
5398
|
-
return "Voucher number"
|
|
5399
|
-
case this.FT_AUTHORIZATION_NUMBER:
|
|
5400
|
-
return "Authorization number"
|
|
5401
|
-
case this.FT_FACULTY:
|
|
5402
|
-
return "Faculty"
|
|
5403
|
-
case this.FT_FORM_OF_EDUCATION:
|
|
5404
|
-
return "Form of education"
|
|
5405
|
-
case this.FT_DNI_NUMBER:
|
|
5406
|
-
return "DNI number"
|
|
5407
|
-
case this.FT_RETIREMENT_NUMBER:
|
|
5408
|
-
return "Retirement number"
|
|
5409
|
-
case this.FT_PROFESSIONAL_ID_NUMBER:
|
|
5410
|
-
return "Professional ID number"
|
|
5411
|
-
case this.FT_AGE_AT_ISSUE:
|
|
5412
|
-
return "Age at issue"
|
|
5413
|
-
case this.FT_YEARS_SINCE_ISSUE:
|
|
5414
|
-
return "Years since issue"
|
|
5415
|
-
case this.FT_DLCLASSCODE_BTP_FROM:
|
|
5416
|
-
return "DL category BTP valid from"
|
|
5417
|
-
case this.FT_DLCLASSCODE_BTP_NOTES:
|
|
5418
|
-
return "DL category BTP codes"
|
|
5419
|
-
case this.FT_DLCLASSCODE_BTP_TO:
|
|
5420
|
-
return "DL category BTP valid to"
|
|
5421
|
-
case this.FT_DLCLASSCODE_C3_FROM:
|
|
5422
|
-
return "DL category C3 valid from"
|
|
5423
|
-
case this.FT_DLCLASSCODE_C3_NOTES:
|
|
5424
|
-
return "DL category C3 codes"
|
|
5425
|
-
case this.FT_DLCLASSCODE_C3_TO:
|
|
5426
|
-
return "DL category C3 valid to"
|
|
5427
|
-
case this.FT_DLCLASSCODE_E_FROM:
|
|
5428
|
-
return "DL category E valid from"
|
|
5429
|
-
case this.FT_DLCLASSCODE_E_NOTES:
|
|
5430
|
-
return "DL category E codes"
|
|
5431
|
-
case this.FT_DLCLASSCODE_E_TO:
|
|
5432
|
-
return "DL category E valid to"
|
|
5433
|
-
case this.FT_DLCLASSCODE_F_FROM:
|
|
5434
|
-
return "DL category F valid from"
|
|
5435
|
-
case this.FT_DLCLASSCODE_F_NOTES:
|
|
5436
|
-
return "DL category F codes"
|
|
5437
|
-
case this.FT_DLCLASSCODE_F_TO:
|
|
5438
|
-
return "DL category F valid to"
|
|
5439
|
-
case this.FT_DLCLASSCODE_FA_FROM:
|
|
5440
|
-
return "DL category FA valid from"
|
|
5441
|
-
case this.FT_DLCLASSCODE_FA_NOTES:
|
|
5442
|
-
return "DL category FA codes"
|
|
5443
|
-
case this.FT_DLCLASSCODE_FA_TO:
|
|
5444
|
-
return "DL category FA valid to"
|
|
5445
|
-
case this.FT_DLCLASSCODE_FA1_FROM:
|
|
5446
|
-
return "DL category FA1 valid from"
|
|
5447
|
-
case this.FT_DLCLASSCODE_FA1_NOTES:
|
|
5448
|
-
return "DL category FA1 codes"
|
|
5449
|
-
case this.FT_DLCLASSCODE_FA1_TO:
|
|
5450
|
-
return "DL category FA1 valid to"
|
|
5451
|
-
case this.FT_DLCLASSCODE_FB_FROM:
|
|
5452
|
-
return "DL category FB valid from"
|
|
5453
|
-
case this.FT_DLCLASSCODE_FB_NOTES:
|
|
5454
|
-
return "DL category FB codes"
|
|
5455
|
-
case this.FT_DLCLASSCODE_FB_TO:
|
|
5456
|
-
return "DL category FB valid to"
|
|
5457
|
-
case this.FT_DLCLASSCODE_G1_FROM:
|
|
5458
|
-
return "DL category G1 valid from"
|
|
5459
|
-
case this.FT_DLCLASSCODE_G1_NOTES:
|
|
5460
|
-
return "DL category G1 codes"
|
|
5461
|
-
case this.FT_DLCLASSCODE_G1_TO:
|
|
5462
|
-
return "DL category G1 valid to"
|
|
5463
|
-
case this.FT_DLCLASSCODE_H_FROM:
|
|
5464
|
-
return "DL category H valid from"
|
|
5465
|
-
case this.FT_DLCLASSCODE_H_NOTES:
|
|
5466
|
-
return "DL category H codes"
|
|
5467
|
-
case this.FT_DLCLASSCODE_H_TO:
|
|
5468
|
-
return "DL category H valid to"
|
|
5469
|
-
case this.FT_DLCLASSCODE_I_FROM:
|
|
5470
|
-
return "DL category I valid from"
|
|
5471
|
-
case this.FT_DLCLASSCODE_I_NOTES:
|
|
5472
|
-
return "DL category I codes"
|
|
5473
|
-
case this.FT_DLCLASSCODE_I_TO:
|
|
5474
|
-
return "DL category I valid to"
|
|
5475
|
-
case this.FT_DLCLASSCODE_K_FROM:
|
|
5476
|
-
return "DL category K valid from"
|
|
5477
|
-
case this.FT_DLCLASSCODE_K_NOTES:
|
|
5478
|
-
return "DL category K codes"
|
|
5479
|
-
case this.FT_DLCLASSCODE_K_TO:
|
|
5480
|
-
return "DL category K valid to"
|
|
5481
|
-
case this.FT_DLCLASSCODE_LK_FROM:
|
|
5482
|
-
return "DL category LK valid from"
|
|
5483
|
-
case this.FT_DLCLASSCODE_LK_NOTES:
|
|
5484
|
-
return "DL category LK codes"
|
|
5485
|
-
case this.FT_DLCLASSCODE_LK_TO:
|
|
5486
|
-
return "DL category LK valid to"
|
|
5487
|
-
case this.FT_DLCLASSCODE_N_FROM:
|
|
5488
|
-
return "DL category N valid from"
|
|
5489
|
-
case this.FT_DLCLASSCODE_N_NOTES:
|
|
5490
|
-
return "DL category N codes"
|
|
5491
|
-
case this.FT_DLCLASSCODE_N_TO:
|
|
5492
|
-
return "DL category N valid to"
|
|
5493
|
-
case this.FT_DLCLASSCODE_S_FROM:
|
|
5494
|
-
return "DL category S valid from"
|
|
5495
|
-
case this.FT_DLCLASSCODE_S_NOTES:
|
|
5496
|
-
return "DL category S codes"
|
|
5497
|
-
case this.FT_DLCLASSCODE_S_TO:
|
|
5498
|
-
return "DL category S valid to"
|
|
5499
|
-
case this.FT_DLCLASSCODE_TB_FROM:
|
|
5500
|
-
return "DL category TB valid from"
|
|
5501
|
-
case this.FT_DLCLASSCODE_TB_NOTES:
|
|
5502
|
-
return "DL category TB codes"
|
|
5503
|
-
case this.FT_DLCLASSCODE_TB_TO:
|
|
5504
|
-
return "DL category TB valid to"
|
|
5505
|
-
case this.FT_DLCLASSCODE_TM_FROM:
|
|
5506
|
-
return "DL category TM valid from"
|
|
5507
|
-
case this.FT_DLCLASSCODE_TM_NOTES:
|
|
5508
|
-
return "DL category TM codes"
|
|
5509
|
-
case this.FT_DLCLASSCODE_TM_TO:
|
|
5510
|
-
return "DL category TM valid to"
|
|
5511
|
-
case this.FT_DLCLASSCODE_TR_FROM:
|
|
5512
|
-
return "DL category TR valid from"
|
|
5513
|
-
case this.FT_DLCLASSCODE_TR_NOTES:
|
|
5514
|
-
return "DL category TR codes"
|
|
5515
|
-
case this.FT_DLCLASSCODE_TR_TO:
|
|
5516
|
-
return "DL category TR valid to"
|
|
5517
|
-
case this.FT_DLCLASSCODE_TV_FROM:
|
|
5518
|
-
return "DL category TV valid from"
|
|
5519
|
-
case this.FT_DLCLASSCODE_TV_NOTES:
|
|
5520
|
-
return "DL category TV codes"
|
|
5521
|
-
case this.FT_DLCLASSCODE_TV_TO:
|
|
5522
|
-
return "DL category TV valid to"
|
|
5523
|
-
case this.FT_DLCLASSCODE_V_FROM:
|
|
5524
|
-
return "DL category V valid from"
|
|
5525
|
-
case this.FT_DLCLASSCODE_V_NOTES:
|
|
5526
|
-
return "DL category V codes"
|
|
5527
|
-
case this.FT_DLCLASSCODE_V_TO:
|
|
5528
|
-
return "DL category V valid to"
|
|
5529
|
-
case this.FT_DLCLASSCODE_W_FROM:
|
|
5530
|
-
return "DL category W valid from"
|
|
5531
|
-
case this.FT_DLCLASSCODE_W_NOTES:
|
|
5532
|
-
return "DL category W codes"
|
|
5533
|
-
case this.FT_DLCLASSCODE_W_TO:
|
|
5534
|
-
return "DL category W valid to"
|
|
5535
|
-
case this.FT_CALIBER:
|
|
5536
|
-
return "Caliber"
|
|
5537
|
-
case this.FT_CITIZENSHIP_OF_FIRST_PERSON:
|
|
5538
|
-
return "Citizenship of the first person"
|
|
5539
|
-
case this.FT_CITIZENSHIP_OF_SECOND_PERSON:
|
|
5540
|
-
return "Citizenship of the second person"
|
|
5541
|
-
case this.FT_CVV:
|
|
5542
|
-
return "CVV/CVC"
|
|
5543
|
-
case this.FT_DATE_OF_BIRTH_OF_HUSBAND:
|
|
5544
|
-
return "Date of birth of husband"
|
|
5545
|
-
case this.FT_DATE_OF_BIRTH_OF_WIFE:
|
|
5546
|
-
return "Date of birth of wife"
|
|
5547
|
-
case this.FT_MAKE:
|
|
5548
|
-
return "Make"
|
|
5549
|
-
case this.FT_MODEL:
|
|
5550
|
-
return "Model"
|
|
5551
|
-
case this.FT_NUMBER_OF_CYLINDERS:
|
|
5552
|
-
return "Number of cylinders"
|
|
5553
|
-
case this.FT_SURNAME_OF_HUSBAND_AFTER_REGISTRATION:
|
|
5554
|
-
return "Surname of husband after registration"
|
|
5555
|
-
case this.FT_SURNAME_OF_WIFE_AFTER_REGISTRATION:
|
|
5556
|
-
return "Surname of wife after registration"
|
|
5557
|
-
case this.FT_URL:
|
|
5558
|
-
return "URL"
|
|
5559
|
-
case this.FT_DATE_OF_INSURANCE_EXPIRY:
|
|
5560
|
-
return "Expiry date of insurance"
|
|
5561
|
-
case this.FT_MORTGAGE_BY:
|
|
5562
|
-
return "Mortgage by"
|
|
5563
|
-
case this.FT_OLD_DOCUMENT_NUMBER:
|
|
5564
|
-
return "Old document number"
|
|
5565
|
-
case this.FT_OLD_DATE_OF_ISSUE:
|
|
5566
|
-
return "Old date of issue"
|
|
5567
|
-
case this.FT_OLD_PLACE_OF_ISSUE:
|
|
5568
|
-
return "Old place of issue"
|
|
5569
|
-
case this.FT_DLCLASSCODE_LR_FROM:
|
|
5570
|
-
return "DL category LR valid from"
|
|
5571
|
-
case this.FT_DLCLASSCODE_LR_TO:
|
|
5572
|
-
return "DL category LR valid to"
|
|
5573
|
-
case this.FT_DLCLASSCODE_LR_NOTES:
|
|
5574
|
-
return "DL category LR codes"
|
|
5575
|
-
case this.FT_DLCLASSCODE_MR_FROM:
|
|
5576
|
-
return "DL category MR valid from"
|
|
5577
|
-
case this.FT_DLCLASSCODE_MR_TO:
|
|
5578
|
-
return "DL category MR valid to"
|
|
5579
|
-
case this.FT_DLCLASSCODE_MR_NOTES:
|
|
5580
|
-
return "DL category MR codes"
|
|
5581
|
-
case this.FT_DLCLASSCODE_HR_FROM:
|
|
5582
|
-
return "DL category HR valid from"
|
|
5583
|
-
case this.FT_DLCLASSCODE_HR_TO:
|
|
5584
|
-
return "DL category HR valid to"
|
|
5585
|
-
case this.FT_DLCLASSCODE_HR_NOTES:
|
|
5586
|
-
return "DL category HR codes"
|
|
5587
|
-
case this.FT_DLCLASSCODE_HC_FROM:
|
|
5588
|
-
return "DL category HC valid from"
|
|
5589
|
-
case this.FT_DLCLASSCODE_HC_TO:
|
|
5590
|
-
return "DL category HC valid to"
|
|
5591
|
-
case this.FT_DLCLASSCODE_HC_NOTES:
|
|
5592
|
-
return "DL category HC codes"
|
|
5593
|
-
case this.FT_DLCLASSCODE_MC_FROM:
|
|
5594
|
-
return "DL category MC valid from"
|
|
5595
|
-
case this.FT_DLCLASSCODE_MC_TO:
|
|
5596
|
-
return "DL category MC valid to"
|
|
5597
|
-
case this.FT_DLCLASSCODE_MC_NOTES:
|
|
5598
|
-
return "DL category MC codes"
|
|
5599
|
-
case this.FT_DLCLASSCODE_RE_FROM:
|
|
5600
|
-
return "DL category RE valid from"
|
|
5601
|
-
case this.FT_DLCLASSCODE_RE_TO:
|
|
5602
|
-
return "DL category RE valid to"
|
|
5603
|
-
case this.FT_DLCLASSCODE_RE_NOTES:
|
|
5604
|
-
return "DL category RE codes"
|
|
5605
|
-
case this.FT_DLCLASSCODE_R_FROM:
|
|
5606
|
-
return "DL category R valid from"
|
|
5607
|
-
case this.FT_DLCLASSCODE_R_TO:
|
|
5608
|
-
return "DL category R valid to"
|
|
5609
|
-
case this.FT_DLCLASSCODE_R_NOTES:
|
|
5610
|
-
return "DL category R codes"
|
|
5611
|
-
case this.FT_DLCLASSCODE_CA_FROM:
|
|
5612
|
-
return "DL category CA valid from"
|
|
5613
|
-
case this.FT_DLCLASSCODE_CA_TO:
|
|
5614
|
-
return "DL category CA valid to"
|
|
5615
|
-
case this.FT_DLCLASSCODE_CA_NOTES:
|
|
5616
|
-
return "DL category CA codes"
|
|
5617
|
-
case this.FT_CITIZENSHIP_STATUS:
|
|
5618
|
-
return "Citizenship status"
|
|
5619
|
-
case this.FT_MILITARY_SERVICE_FROM:
|
|
5620
|
-
return "Military service from"
|
|
5621
|
-
case this.FT_MILITARY_SERVICE_TO:
|
|
5622
|
-
return "Military service to"
|
|
5623
|
-
case this.FT_DLCLASSCODE_D3_FROM:
|
|
5624
|
-
return "DL category D3 valid from"
|
|
5625
|
-
case this.FT_DLCLASSCODE_D3_NOTES:
|
|
5626
|
-
return "DL category D3 codes"
|
|
5627
|
-
case this.FT_DLCLASSCODE_D3_TO:
|
|
5628
|
-
return "DL category D3 valid to"
|
|
5629
|
-
case this.FT_DLCLASSCODE_NT_FROM:
|
|
5630
|
-
return "DL category NT valid from"
|
|
5631
|
-
case this.FT_DLCLASSCODE_NT_NOTES:
|
|
5632
|
-
return "DL category NT codes"
|
|
5633
|
-
case this.FT_DLCLASSCODE_NT_TO:
|
|
5634
|
-
return "DL category NT valid to"
|
|
5635
|
-
case this.FT_DLCLASSCODE_TN_FROM:
|
|
5636
|
-
return "DL category TN valid from"
|
|
5637
|
-
case this.FT_DLCLASSCODE_TN_NOTES:
|
|
5638
|
-
return "DL category TN codes"
|
|
5639
|
-
case this.FT_DLCLASSCODE_TN_TO:
|
|
5640
|
-
return "DL category TN valid to"
|
|
5641
|
-
case this.FT_ALT_DATE_OF_EXPIRY:
|
|
5642
|
-
return "Alternative date of expiry"
|
|
5643
|
-
case this.FT_DLCLASSCODE_CD_FROM:
|
|
5644
|
-
return "DL category CD valid from"
|
|
5645
|
-
case this.FT_DLCLASSCODE_CD_TO:
|
|
5646
|
-
return "DL category CD valid to"
|
|
5647
|
-
case this.FT_DLCLASSCODE_CD_NOTES:
|
|
5648
|
-
return "DL category CD codes"
|
|
5649
|
-
case this.FT_FIRST_NAME:
|
|
5650
|
-
return "First name"
|
|
5651
|
-
case this.FT_DATE_OF_ARRIVAL:
|
|
5652
|
-
return "Date of arrival"
|
|
5653
|
-
case this.FT_ISSUER_IDENTIFICATION_NUMBER:
|
|
5654
|
-
return "Issuer identification number"
|
|
5655
|
-
case this.FT_PAYMENT_PERIOD_FROM:
|
|
5656
|
-
return "Payment period from"
|
|
5657
|
-
case this.FT_PAYMENT_PERIOD_TO:
|
|
5658
|
-
return "Payment period to"
|
|
5659
|
-
case this.FT_VACCINATION_CERTIFICATE_IDENTIFIER:
|
|
5660
|
-
return "Unique vaccination certificate identifier"
|
|
5661
|
-
case this.FT_SECOND_NAME:
|
|
5662
|
-
return "Second name"
|
|
5663
|
-
case this.FT_THIRD_NAME:
|
|
5664
|
-
return "Third name"
|
|
5665
|
-
case this.FT_FOURTH_NAME:
|
|
5666
|
-
return "Fourth name"
|
|
5667
|
-
case this.FT_LAST_NAME:
|
|
5668
|
-
return "Last name"
|
|
5669
|
-
case this.FT_DLCLASSCODE_PW_FROM:
|
|
5670
|
-
return "DL class code PW valid from"
|
|
5671
|
-
case this.FT_DLCLASSCODE_PW_NOTES:
|
|
5672
|
-
return "DL class code PW notes"
|
|
5673
|
-
case this.FT_DLCLASSCODE_PW_TO:
|
|
5674
|
-
return "DL class code PW valid to"
|
|
5675
|
-
case this.FT_DLCLASSCODE_RM_FROM:
|
|
5676
|
-
return "DL class code RM valid from"
|
|
5677
|
-
case this.FT_DLCLASSCODE_RM_NOTES:
|
|
5678
|
-
return "DL class code RM notes"
|
|
5679
|
-
case this.FT_DLCLASSCODE_RM_TO:
|
|
5680
|
-
return "DL class code RM valid to"
|
|
5681
|
-
default:
|
|
5682
|
-
return value
|
|
5683
|
-
}
|
|
5684
|
-
}
|
|
3277
|
+
FT_YEAR_OF_BIRTH: 667,
|
|
3278
|
+
FT_YEAR_OF_EXPIRY: 668,
|
|
3279
|
+
FT_GRANDFATHER_NAME_MATERNAL: 669,
|
|
3280
|
+
FT_FIRST_SURNAME: 670,
|
|
3281
|
+
FT_MONTH_OF_BIRTH: 671,
|
|
3282
|
+
FT_ADDRESS_FLOOR_NUMBER: 672,
|
|
3283
|
+
FT_ADDRESS_ENTRANCE: 673,
|
|
3284
|
+
FT_ADDRESS_BLOCK_NUMBER: 674,
|
|
3285
|
+
FT_ADDRESS_STREET_NUMBER: 675,
|
|
3286
|
+
FT_ADDRESS_STREET_TYPE: 676,
|
|
3287
|
+
FT_ADDRESS_CITY_SECTOR: 677,
|
|
3288
|
+
FT_ADDRESS_COUNTY_TYPE: 678,
|
|
3289
|
+
FT_ADDRESS_CITY_TYPE: 679,
|
|
3290
|
+
FT_ADDRESS_BUILDING_TYPE: 680,
|
|
5685
3291
|
}
|
|
5686
3292
|
|
|
5687
3293
|
const DocReaderOrientation = {
|
|
@@ -5849,325 +3455,6 @@ const LCID = {
|
|
|
5849
3455
|
VIETNAMESE: 1066,
|
|
5850
3456
|
CTC_SIMPLIFIED: 50001,
|
|
5851
3457
|
CTC_TRADITIONAL: 50002,
|
|
5852
|
-
|
|
5853
|
-
getTranslation: function (value) {
|
|
5854
|
-
switch (value) {
|
|
5855
|
-
case this.LATIN:
|
|
5856
|
-
return "Latin"
|
|
5857
|
-
case this.AFRIKAANS:
|
|
5858
|
-
return "Afrikaans"
|
|
5859
|
-
case this.ABKHAZIAN_CYRILLIC:
|
|
5860
|
-
return "Abkhazian (Cyrillic)"
|
|
5861
|
-
case this.ALBANIAN:
|
|
5862
|
-
return "Albanian"
|
|
5863
|
-
case this.AMHARIC:
|
|
5864
|
-
return "Amharic"
|
|
5865
|
-
case this.ARABIC_ALGERIA:
|
|
5866
|
-
return "Arabic (Algeria)"
|
|
5867
|
-
case this.ARABIC_BAHRAIN:
|
|
5868
|
-
return "Arabic (Bahrain)"
|
|
5869
|
-
case this.ARABIC_EGYPT:
|
|
5870
|
-
return "Arabic (Egypt)"
|
|
5871
|
-
case this.ARABIC_IRAQ:
|
|
5872
|
-
return "Arabic (Iraq)"
|
|
5873
|
-
case this.ARABIC_JORDAN:
|
|
5874
|
-
return "Arabic (Jordan)"
|
|
5875
|
-
case this.ARABIC_KUWAIT:
|
|
5876
|
-
return "Arabic (Kuwait)"
|
|
5877
|
-
case this.ARABIC_LEBANON:
|
|
5878
|
-
return "Arabic (Lebanon)"
|
|
5879
|
-
case this.ARABIC_LIBYA:
|
|
5880
|
-
return "Arabic (Libya)"
|
|
5881
|
-
case this.ARABIC_MOROCCO:
|
|
5882
|
-
return "Arabic (Morocco)"
|
|
5883
|
-
case this.ARABIC_OMAN:
|
|
5884
|
-
return "Arabic (Oman)"
|
|
5885
|
-
case this.ARABIC_QATAR:
|
|
5886
|
-
return "Arabic (Qatar)"
|
|
5887
|
-
case this.ARABIC_SAUDI_ARABIA:
|
|
5888
|
-
return "Arabic (Saudi Arabia)"
|
|
5889
|
-
case this.ARABIC_SYRIA:
|
|
5890
|
-
return "Arabic (Syria)"
|
|
5891
|
-
case this.ARABIC_TUNISIA:
|
|
5892
|
-
return "Arabic (Tunisia)"
|
|
5893
|
-
case this.ARABIC_UAE:
|
|
5894
|
-
return "Arabic (U.A.E.)"
|
|
5895
|
-
case this.ARABIC_YEMEN:
|
|
5896
|
-
return "Arabic (Yemen)"
|
|
5897
|
-
case this.ARABIC_ARMENIAN:
|
|
5898
|
-
return "Armenian"
|
|
5899
|
-
case this.ARABIC_WORLD:
|
|
5900
|
-
return "Arabic (World)"
|
|
5901
|
-
case this.AZERI_CYRILIC:
|
|
5902
|
-
return "Azeri (Cyrillic)"
|
|
5903
|
-
case this.AZERI_LATIN:
|
|
5904
|
-
return "Azeri (Latin)"
|
|
5905
|
-
case this.BASQUE:
|
|
5906
|
-
return "Basque"
|
|
5907
|
-
case this.BANK_CARD:
|
|
5908
|
-
return "Bank Card"
|
|
5909
|
-
case this.BANK_CARD_CVV2:
|
|
5910
|
-
return "Bank Card CVV2"
|
|
5911
|
-
case this.BANK_CARD_NAME:
|
|
5912
|
-
return "Bank Card Name"
|
|
5913
|
-
case this.BANK_CARD_NUMBER:
|
|
5914
|
-
return "Bank Card Number"
|
|
5915
|
-
case this.BANK_CARD_VALID_THRU:
|
|
5916
|
-
return "Bank Card Valid Thru"
|
|
5917
|
-
case this.BELARUSIAN:
|
|
5918
|
-
return "Belarusian"
|
|
5919
|
-
case this.BENGALI:
|
|
5920
|
-
return "Bengali"
|
|
5921
|
-
case this.BULGARIAN:
|
|
5922
|
-
return "Bulgarian"
|
|
5923
|
-
case this.CATALAN:
|
|
5924
|
-
return "Catalan"
|
|
5925
|
-
case this.CHINESE_HONGKONG_SAR:
|
|
5926
|
-
return "Chinese (HongKong S.A.R.)"
|
|
5927
|
-
case this.CHINESE_MACAO_SAR:
|
|
5928
|
-
return "Chinese (Macao S.A.R.)"
|
|
5929
|
-
case this.CHINESE:
|
|
5930
|
-
return "Chinese"
|
|
5931
|
-
case this.CHINESE_SINGAPORE:
|
|
5932
|
-
return "Chinese (Singapore)"
|
|
5933
|
-
case this.CHINESE_TAIWAN:
|
|
5934
|
-
return "Chinese (Taiwan)"
|
|
5935
|
-
case this.CROATIAN:
|
|
5936
|
-
return "Croatian"
|
|
5937
|
-
case this.CZECH:
|
|
5938
|
-
return "Czech"
|
|
5939
|
-
case this.DANISH:
|
|
5940
|
-
return "Danish"
|
|
5941
|
-
case this.DIVEHI:
|
|
5942
|
-
return "Divehi"
|
|
5943
|
-
case this.DUTCH_BELGIUM:
|
|
5944
|
-
return "Dutch (Belgium)"
|
|
5945
|
-
case this.DUTCH_NETHERLANDS:
|
|
5946
|
-
return "Dutch (Netherlands)"
|
|
5947
|
-
case this.ENGLISH_AUSTRALIA:
|
|
5948
|
-
return "English (Australia)"
|
|
5949
|
-
case this.ENGLISH_BELIZE:
|
|
5950
|
-
return "English (Belize)"
|
|
5951
|
-
case this.ENGLISH_CANADA:
|
|
5952
|
-
return "English (Canada)"
|
|
5953
|
-
case this.ENGLISH_CARRIBEAN:
|
|
5954
|
-
return "English (Caribbean)"
|
|
5955
|
-
case this.ENGLISH_IRELAND:
|
|
5956
|
-
return "English (Ireland)"
|
|
5957
|
-
case this.ENGLISH_JAMAICA:
|
|
5958
|
-
return "English (Jamaica)"
|
|
5959
|
-
case this.ENGLISH_NEW_ZEALAND:
|
|
5960
|
-
return "English (New Zealand)"
|
|
5961
|
-
case this.ENGLISH_PHILIPPINES:
|
|
5962
|
-
return "English (Philippines)"
|
|
5963
|
-
case this.ENGLISH_SOUTH_AFRICA:
|
|
5964
|
-
return "English (South Africa)"
|
|
5965
|
-
case this.ENGLISH_TRINIDAD:
|
|
5966
|
-
return "English (Trinidad)"
|
|
5967
|
-
case this.ENGLISH_UK:
|
|
5968
|
-
return "English (United Kingdom)"
|
|
5969
|
-
case this.ENGLISH_US:
|
|
5970
|
-
return "English (United States)"
|
|
5971
|
-
case this.ENGLISH_ZIMBABWE:
|
|
5972
|
-
return "English (Zimbabwe)"
|
|
5973
|
-
case this.ESTONIAN:
|
|
5974
|
-
return "Estonian"
|
|
5975
|
-
case this.FAEROESE:
|
|
5976
|
-
return "Faeroese"
|
|
5977
|
-
case this.FARSI:
|
|
5978
|
-
return "Farsi"
|
|
5979
|
-
case this.FINNISH:
|
|
5980
|
-
return "Finnish"
|
|
5981
|
-
case this.FRENCH_BELGIUM:
|
|
5982
|
-
return "French (Belgium)"
|
|
5983
|
-
case this.FRENCH_CANADA:
|
|
5984
|
-
return "French (Canada)"
|
|
5985
|
-
case this.FRENCH_FRANCE:
|
|
5986
|
-
return "French (France)"
|
|
5987
|
-
case this.FRENCH_LUXEMBOURG:
|
|
5988
|
-
return "French (Luxembourg)"
|
|
5989
|
-
case this.FRENCH_MONACO:
|
|
5990
|
-
return "French (Monaco)"
|
|
5991
|
-
case this.FRENCH_SWITZERLAND:
|
|
5992
|
-
return "French (Switzerland)"
|
|
5993
|
-
case this.GALICIAN:
|
|
5994
|
-
return "Galician"
|
|
5995
|
-
case this.GEORGIAN:
|
|
5996
|
-
return "Georgian"
|
|
5997
|
-
case this.GERMAN_AUSTRIA:
|
|
5998
|
-
return "German (Austria)"
|
|
5999
|
-
case this.GERMAN_GERMANY:
|
|
6000
|
-
return "German (Germany)"
|
|
6001
|
-
case this.GERMAN_LIECHTENSTEIN:
|
|
6002
|
-
return "German (Liechtenstein)"
|
|
6003
|
-
case this.GERMAN_LUXEMBOURG:
|
|
6004
|
-
return "German (Luxembourg)"
|
|
6005
|
-
case this.GERMAN_SWITZERLAND:
|
|
6006
|
-
return "German (Switzerland)"
|
|
6007
|
-
case this.GREEK:
|
|
6008
|
-
return "Greek"
|
|
6009
|
-
case this.GUJARATI:
|
|
6010
|
-
return "Gujarati"
|
|
6011
|
-
case this.HEBREW:
|
|
6012
|
-
return "Hebrew"
|
|
6013
|
-
case this.HINDI_INDIA:
|
|
6014
|
-
return "Hindi (India)"
|
|
6015
|
-
case this.HUNGARIAN:
|
|
6016
|
-
return "Hungarian"
|
|
6017
|
-
case this.ICELANDIC:
|
|
6018
|
-
return "Icelandic"
|
|
6019
|
-
case this.INDONESIAN:
|
|
6020
|
-
return "Indonesian"
|
|
6021
|
-
case this.ITALIAN_ITALY:
|
|
6022
|
-
return "Italian (Italy)"
|
|
6023
|
-
case this.ITALIAN_SWITZERLAND:
|
|
6024
|
-
return "Italian (Switzerland)"
|
|
6025
|
-
case this.JAPANESE:
|
|
6026
|
-
return "Japanese"
|
|
6027
|
-
case this.KANNADA:
|
|
6028
|
-
return "Kannada"
|
|
6029
|
-
case this.KASHMIRI:
|
|
6030
|
-
return "Kashmiri"
|
|
6031
|
-
case this.KAZAKH:
|
|
6032
|
-
return "Kazakh"
|
|
6033
|
-
case this.KONKANI:
|
|
6034
|
-
return "Konkani"
|
|
6035
|
-
case this.KOREAN:
|
|
6036
|
-
return "Korean"
|
|
6037
|
-
case this.KYRGYZ_CYRILICK:
|
|
6038
|
-
return "Kyrgyz (Cyrillic)"
|
|
6039
|
-
case this.LAO:
|
|
6040
|
-
return "Lao"
|
|
6041
|
-
case this.LATVIAN:
|
|
6042
|
-
return "Latvian"
|
|
6043
|
-
case this.LITHUANIAN:
|
|
6044
|
-
return "Lithuanian"
|
|
6045
|
-
case this.FYRO_MACEDONIAN:
|
|
6046
|
-
return "FYRO Macedonian"
|
|
6047
|
-
case this.MALAY_MALAYSIA:
|
|
6048
|
-
return "Malay (Malaysia)"
|
|
6049
|
-
case this.MALAY_BRUNEI_DARUSSALAM:
|
|
6050
|
-
return "Malay (Brunei Darussalam)"
|
|
6051
|
-
case this.MARATHI:
|
|
6052
|
-
return "Marathi"
|
|
6053
|
-
case this.MONGOLIAN_CYRILIC:
|
|
6054
|
-
return "Mongolian (Cyrillic)"
|
|
6055
|
-
case this.NORWEGIAN_BOKMAL:
|
|
6056
|
-
return "Norwegian (Bokmal)"
|
|
6057
|
-
case this.NORWEGIAN_NYORSK:
|
|
6058
|
-
return "Norwegian (Nynorsk)"
|
|
6059
|
-
case this.PASHTO:
|
|
6060
|
-
return "Pashto"
|
|
6061
|
-
case this.POLISH:
|
|
6062
|
-
return "Polish"
|
|
6063
|
-
case this.PORTUGUESE_BRAZIL:
|
|
6064
|
-
return "Portuguese (Brazil)"
|
|
6065
|
-
case this.PORTUGUESE_PORTUGAL:
|
|
6066
|
-
return "Portuguese (Portugal)"
|
|
6067
|
-
case this.PUNJABI:
|
|
6068
|
-
return "Punjabi"
|
|
6069
|
-
case this.RHAETO_ROMANIC:
|
|
6070
|
-
return "Rhaeto-Romanic"
|
|
6071
|
-
case this.ROMANIAN:
|
|
6072
|
-
return "Romanian"
|
|
6073
|
-
case this.RUSSIAN:
|
|
6074
|
-
return "Russian"
|
|
6075
|
-
case this.SANSKRIT:
|
|
6076
|
-
return "Sanskrit"
|
|
6077
|
-
case this.SINDHI:
|
|
6078
|
-
return "Sindhi"
|
|
6079
|
-
case this.SINDHI_INDIA:
|
|
6080
|
-
return "Sindhi (India)"
|
|
6081
|
-
case this.SINHALA:
|
|
6082
|
-
return "Sinhala"
|
|
6083
|
-
case this.SERBIAN_CYRILIC:
|
|
6084
|
-
return "Serbian (Cyrillic)"
|
|
6085
|
-
case this.SERBIAN_LATIN:
|
|
6086
|
-
return "Serbian (Latin)"
|
|
6087
|
-
case this.SLOVAK:
|
|
6088
|
-
return "Slovak"
|
|
6089
|
-
case this.SLOVENIAN:
|
|
6090
|
-
return "Slovenian"
|
|
6091
|
-
case this.SPANISH_ARGENTINA:
|
|
6092
|
-
return "Spanish (Argentina)"
|
|
6093
|
-
case this.SPANISH_BOLIVIA:
|
|
6094
|
-
return "Spanish (Bolivia)"
|
|
6095
|
-
case this.SPANISH_CHILE:
|
|
6096
|
-
return "Spanish (Chile)"
|
|
6097
|
-
case this.SPANICH_COLOMBIA:
|
|
6098
|
-
return "Spanish (Colombia)"
|
|
6099
|
-
case this.SPANISH_COSTA_RICA:
|
|
6100
|
-
return "Spanish (Costa Rica)"
|
|
6101
|
-
case this.SPANISH_DOMINICAN_REPUBLIC:
|
|
6102
|
-
return "Spanish (Dominican Republic)"
|
|
6103
|
-
case this.SPANISH_ECUADOR:
|
|
6104
|
-
return "Spanish (Ecuador)"
|
|
6105
|
-
case this.SPANISH_EL_SALVADOR:
|
|
6106
|
-
return "Spanish (El Salvador)"
|
|
6107
|
-
case this.SPANISH_GUATEMALA:
|
|
6108
|
-
return "Spanish (Guatemala)"
|
|
6109
|
-
case this.SPANISH_HONDURAS:
|
|
6110
|
-
return "Spanish (Honduras)"
|
|
6111
|
-
case this.SPANISH_MEXICO:
|
|
6112
|
-
return "Spanish (Mexico)"
|
|
6113
|
-
case this.SPANISH_NICARAGUA:
|
|
6114
|
-
return "Spanish (Nicaragua)"
|
|
6115
|
-
case this.SPANISH_PANAMA:
|
|
6116
|
-
return "Spanish (Panama)"
|
|
6117
|
-
case this.SPANISH_PARAGUAY:
|
|
6118
|
-
return "Spanish (Paraguay)"
|
|
6119
|
-
case this.SPANISH_PERU:
|
|
6120
|
-
return "Spanish (Peru)"
|
|
6121
|
-
case this.SPANISH_PUERTO_RICO:
|
|
6122
|
-
return "Spanish (Puerto Rico)"
|
|
6123
|
-
case this.SPANISH_TRADITIONAL_SORT:
|
|
6124
|
-
return "Spanish (Traditional Sort)"
|
|
6125
|
-
case this.SPANISH_INTERNATIONAL_SORT:
|
|
6126
|
-
return "Spanish (International Sort)"
|
|
6127
|
-
case this.SPANISH_URUGUAY:
|
|
6128
|
-
return "Spanish (Uruguay)"
|
|
6129
|
-
case this.SPANISH_VENEZUELA:
|
|
6130
|
-
return "Spanish (Venezuela)"
|
|
6131
|
-
case this.SWAHILI:
|
|
6132
|
-
return "Swahili"
|
|
6133
|
-
case this.SWEDISH:
|
|
6134
|
-
return "Swedish"
|
|
6135
|
-
case this.SWEDISH_FINLAND:
|
|
6136
|
-
return "Swedish (Finland)"
|
|
6137
|
-
case this.SYRIAC:
|
|
6138
|
-
return "Syriac"
|
|
6139
|
-
case this.TAMIL:
|
|
6140
|
-
return "Tamil"
|
|
6141
|
-
case this.TATAR:
|
|
6142
|
-
return "Tatar"
|
|
6143
|
-
case this.TELUGU:
|
|
6144
|
-
return "Telugu"
|
|
6145
|
-
case this.THAI_THAILAND:
|
|
6146
|
-
return "Thai (Thailand)"
|
|
6147
|
-
case this.TURKISH:
|
|
6148
|
-
return "Turkish"
|
|
6149
|
-
case this.TAJIK_CYRILLIC:
|
|
6150
|
-
return "Tajik (Cyrillic)"
|
|
6151
|
-
case this.TURKMEN:
|
|
6152
|
-
return "Turkmen"
|
|
6153
|
-
case this.UKRAINIAN:
|
|
6154
|
-
return "Ukrainian"
|
|
6155
|
-
case this.URDU:
|
|
6156
|
-
return "Urdu"
|
|
6157
|
-
case this.UZBEK_CYRILIC:
|
|
6158
|
-
return "Uzbek (Cyrillic)"
|
|
6159
|
-
case this.UZBEK_LATIN:
|
|
6160
|
-
return "Uzbek (Latin)"
|
|
6161
|
-
case this.VIETNAMESE:
|
|
6162
|
-
return "Vietnamese"
|
|
6163
|
-
case this.CTC_SIMPLIFIED:
|
|
6164
|
-
return "CTC Simplified"
|
|
6165
|
-
case this.CTC_TRADITIONAL:
|
|
6166
|
-
return "CTC Traditional"
|
|
6167
|
-
default:
|
|
6168
|
-
return value
|
|
6169
|
-
}
|
|
6170
|
-
}
|
|
6171
3458
|
}
|
|
6172
3459
|
|
|
6173
3460
|
const DocReaderFrame = {
|
|
@@ -6187,19 +3474,6 @@ const eRPRM_Lights = {
|
|
|
6187
3474
|
RPRM_Light_IR_Full: (8 | 16),
|
|
6188
3475
|
RPRM_LIGHT_OVD: 67108864,
|
|
6189
3476
|
RPRM_LIGHT_WHITE_FULL_OVD: (6 | 67108864),
|
|
6190
|
-
|
|
6191
|
-
getTranslation: function (value) {
|
|
6192
|
-
switch (value) {
|
|
6193
|
-
case this.RPRM_LIGHT_UV:
|
|
6194
|
-
return "UV"
|
|
6195
|
-
case this.RPRM_Light_IR_Full:
|
|
6196
|
-
return "IR"
|
|
6197
|
-
case this.RPRM_LIGHT_WHITE_FULL:
|
|
6198
|
-
return "Visible light"
|
|
6199
|
-
default:
|
|
6200
|
-
return value
|
|
6201
|
-
}
|
|
6202
|
-
}
|
|
6203
3477
|
}
|
|
6204
3478
|
|
|
6205
3479
|
const LineCap = {
|
|
@@ -6273,6 +3547,7 @@ const Enum = {
|
|
|
6273
3547
|
eProcessGLCommands,
|
|
6274
3548
|
PKDResourceType,
|
|
6275
3549
|
eRFID_AuthenticationProcedureType,
|
|
3550
|
+
DocumentReaderErrorCodes,
|
|
6276
3551
|
ScenarioIdentifier,
|
|
6277
3552
|
eRFID_AccessControl_ProcedureType,
|
|
6278
3553
|
eRFID_NotificationCodes,
|
|
@@ -6336,6 +3611,9 @@ DocumentReader.getDatabaseDocumentsNumber = (successCallback, errorCallback) =>
|
|
|
6336
3611
|
DocumentReader.selectedScenario = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["selectedScenario"])
|
|
6337
3612
|
DocumentReader.getSessionLogFolder = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getSessionLogFolder"])
|
|
6338
3613
|
DocumentReader.getDatabaseDescription = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getDatabaseDescription"])
|
|
3614
|
+
/**
|
|
3615
|
+
* @deprecated
|
|
3616
|
+
*/
|
|
6339
3617
|
DocumentReader.showScanner = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["showScanner"])
|
|
6340
3618
|
DocumentReader.startNewPage = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["startNewPage"])
|
|
6341
3619
|
DocumentReader.startNewSession = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["startNewSession"])
|
|
@@ -6363,15 +3641,28 @@ DocumentReader.addPKDCertificates = (certificates, successCallback, errorCallbac
|
|
|
6363
3641
|
DocumentReader.setCameraSessionIsPaused = (paused, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setCameraSessionIsPaused", paused])
|
|
6364
3642
|
DocumentReader.setTag = (tag, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setTag", tag])
|
|
6365
3643
|
DocumentReader.checkDatabaseUpdate = (databaseId, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["checkDatabaseUpdate", databaseId])
|
|
6366
|
-
DocumentReader.
|
|
3644
|
+
DocumentReader.scan = (config, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["scan", config])
|
|
3645
|
+
DocumentReader.recognize = (config, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognize", config])
|
|
3646
|
+
/**
|
|
3647
|
+
* @deprecated
|
|
3648
|
+
*/
|
|
6367
3649
|
DocumentReader.recognizeImages = (images, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognizeImages", images])
|
|
3650
|
+
/**
|
|
3651
|
+
* @deprecated
|
|
3652
|
+
*/
|
|
6368
3653
|
DocumentReader.showScannerWithCameraID = (cameraID, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["showScannerWithCameraID", cameraID])
|
|
6369
3654
|
DocumentReader.runAutoUpdate = (databaseType, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["runAutoUpdate", databaseType])
|
|
6370
3655
|
DocumentReader.setConfig = (config, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setConfig", config])
|
|
6371
3656
|
DocumentReader.setRfidScenario = (scenario, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setRfidScenario", scenario])
|
|
6372
3657
|
DocumentReader.initializeReader = (config, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["initializeReader", config])
|
|
6373
3658
|
DocumentReader.prepareDatabase = (databaseType, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["prepareDatabase", databaseType])
|
|
3659
|
+
/**
|
|
3660
|
+
* @deprecated
|
|
3661
|
+
*/
|
|
6374
3662
|
DocumentReader.recognizeImage = (image, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognizeImage", image])
|
|
3663
|
+
/**
|
|
3664
|
+
* @deprecated
|
|
3665
|
+
*/
|
|
6375
3666
|
DocumentReader.recognizeData = (data, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognizeData", data])
|
|
6376
3667
|
DocumentReader.setRfidSessionStatus = (status, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setRfidSessionStatus", status])
|
|
6377
3668
|
DocumentReader.providePACertificates = (certificates, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["providePACertificates", certificates])
|
|
@@ -6379,12 +3670,20 @@ DocumentReader.provideTACertificates = (certificates, successCallback, errorCall
|
|
|
6379
3670
|
DocumentReader.provideTASignature = (signature, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["provideTASignature", signature])
|
|
6380
3671
|
DocumentReader.parseCoreResults = (json, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["parseCoreResults", json])
|
|
6381
3672
|
DocumentReader.setTCCParams = (params, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setTCCParams", params])
|
|
3673
|
+
/**
|
|
3674
|
+
* @deprecated
|
|
3675
|
+
*/
|
|
6382
3676
|
DocumentReader.recognizeImageWithOpts = (image, options, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognizeImageWithOpts", image, options])
|
|
6383
3677
|
DocumentReader.recognizeVideoFrame = (byteString, params, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognizeVideoFrame", byteString, params])
|
|
3678
|
+
/**
|
|
3679
|
+
* @deprecated
|
|
3680
|
+
*/
|
|
6384
3681
|
DocumentReader.showScannerWithCameraIDAndOpts = (cameraID, options, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["showScannerWithCameraIDAndOpts", cameraID, options])
|
|
6385
3682
|
DocumentReader.recognizeImageWithCameraMode = (image, mode, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognizeImageWithCameraMode", image, mode])
|
|
3683
|
+
/**
|
|
3684
|
+
* @deprecated
|
|
3685
|
+
*/
|
|
6386
3686
|
DocumentReader.recognizeImagesWithImageInputs = (images, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["recognizeImagesWithImageInputs", images])
|
|
6387
|
-
DocumentReader.setOnCustomButtonTappedListener = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setOnCustomButtonTappedListener"])
|
|
6388
3687
|
DocumentReader.setLanguage = (language, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setLanguage", language])
|
|
6389
3688
|
|
|
6390
3689
|
DocumentReader.textFieldValueByType = (results, fieldType, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["textFieldValueByType", results.rawResult, fieldType])
|
|
@@ -6411,9 +3710,6 @@ DocumentReaderPlugin.DocumentReader = DocumentReader
|
|
|
6411
3710
|
DocumentReaderPlugin.Enum = Enum
|
|
6412
3711
|
|
|
6413
3712
|
DocumentReaderPlugin.DocumentReaderScenario = DocumentReaderScenario
|
|
6414
|
-
DocumentReaderPlugin.CoreDetailedScenario = CoreDetailedScenario
|
|
6415
|
-
DocumentReaderPlugin.FaceMetaData = FaceMetaData
|
|
6416
|
-
DocumentReaderPlugin.Bounds = Bounds
|
|
6417
3713
|
DocumentReaderPlugin.Rect = Rect
|
|
6418
3714
|
DocumentReaderPlugin.DocReaderFieldRect = DocReaderFieldRect
|
|
6419
3715
|
DocumentReaderPlugin.DocumentReaderGraphicField = DocumentReaderGraphicField
|
|
@@ -6443,6 +3739,7 @@ DocumentReaderPlugin.SignerInfo = SignerInfo
|
|
|
6443
3739
|
DocumentReaderPlugin.SecurityObject = SecurityObject
|
|
6444
3740
|
DocumentReaderPlugin.CardProperties = CardProperties
|
|
6445
3741
|
DocumentReaderPlugin.RFIDSessionData = RFIDSessionData
|
|
3742
|
+
DocumentReaderPlugin.DataField = DataField
|
|
6446
3743
|
DocumentReaderPlugin.DocumentReaderAuthenticityCheck = DocumentReaderAuthenticityCheck
|
|
6447
3744
|
DocumentReaderPlugin.PDF417Info = PDF417Info
|
|
6448
3745
|
DocumentReaderPlugin.DocumentReaderBarcodeResult = DocumentReaderBarcodeResult
|
|
@@ -6451,7 +3748,7 @@ DocumentReaderPlugin.DocumentReaderAuthenticityResult = DocumentReaderAuthentici
|
|
|
6451
3748
|
DocumentReaderPlugin.DocumentReaderAuthenticityElement = DocumentReaderAuthenticityElement
|
|
6452
3749
|
DocumentReaderPlugin.DocumentReaderCompletion = DocumentReaderCompletion
|
|
6453
3750
|
DocumentReaderPlugin.RfidNotificationCompletion = RfidNotificationCompletion
|
|
6454
|
-
DocumentReaderPlugin.
|
|
3751
|
+
DocumentReaderPlugin.RegulaException = RegulaException
|
|
6455
3752
|
DocumentReaderPlugin.PKDCertificate = PKDCertificate
|
|
6456
3753
|
DocumentReaderPlugin.ImageInputParam = ImageInputParam
|
|
6457
3754
|
DocumentReaderPlugin.PAResourcesIssuer = PAResourcesIssuer
|
|
@@ -6469,6 +3766,14 @@ DocumentReaderPlugin.DocumentReaderRfidOrigin = DocumentReaderRfidOrigin
|
|
|
6469
3766
|
DocumentReaderPlugin.DocumentReaderTextSource = DocumentReaderTextSource
|
|
6470
3767
|
DocumentReaderPlugin.DocumentReaderSymbol = DocumentReaderSymbol
|
|
6471
3768
|
DocumentReaderPlugin.DocumentReaderValidity = DocumentReaderValidity
|
|
3769
|
+
DocumentReaderPlugin.FaceApiParams = FaceApiParams
|
|
3770
|
+
DocumentReaderPlugin.Search = Search
|
|
3771
|
+
DocumentReaderPlugin.ImageQA = ImageQA
|
|
3772
|
+
DocumentReaderPlugin.GlaresCheckParams = GlaresCheckParams
|
|
3773
|
+
DocumentReaderPlugin.RFIDParams = RFIDParams
|
|
3774
|
+
DocumentReaderPlugin.OnlineProcessingConfig = OnlineProcessingConfig
|
|
3775
|
+
DocumentReaderPlugin.ScannerConfig = ScannerConfig
|
|
3776
|
+
DocumentReaderPlugin.RecognizeConfig = RecognizeConfig
|
|
6472
3777
|
DocumentReaderPlugin.DocumentReaderResults = DocumentReaderResults
|
|
6473
3778
|
|
|
6474
3779
|
module.exports = DocumentReaderPlugin
|