mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
09.51.2007 ed39262fa647434d4a0e31f07754a263ce2b16e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at
 * trunk/opends/resource/legal-notices/OpenDS.LICENSE
 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at
 * trunk/opends/resource/legal-notices/OpenDS.LICENSE.  If applicable,
 * add the following below this CDDL HEADER, with the fields enclosed
 * by brackets "[]" replaced with your own identifying * information:
 *      Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.server.messages;
 
 
 
import static org.opends.server.config.ConfigConstants.*;
import static org.opends.server.messages.MessageHandler.*;
 
 
 
/**
 * This class defines the set of message IDs and default format strings for
 * messages associated with Directory Server extensions like password storage
 * schemes, password validators, extended operations, SASL mechanisms, etc.
 */
public class ExtensionsMessages
{
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to initialize a message digest.  This takes two arguments, which
   * are the name of the message digest and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_PWSCHEME_CANNOT_INITIALIZE_MESSAGE_DIGEST =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 1;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to base64-decode a value.  This takes two arguments, which
   * are the string to be base64-decoded and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_PWSCHEME_CANNOT_BASE64_DECODE_STORED_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 2;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * obtain the clear-text password from a password storage scheme that is not
   * reversible.  This takes a single argument, which is the name of the
   * password storage scheme.
   */
  public static final int MSGID_PWSCHEME_NOT_REVERSIBLE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 3;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * attempting to register the JMX alert handler MBean with the MBean server.
   * This takes a single argument, which is a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_JMX_ALERT_HANDLER_CANNOT_REGISTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 4;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to encode a password value.  This takes two arguments, which are
   * the fully-qualified name of the class implementing the storage scheme, and
   * a string representation of the exception that was caught.
   */
  public static final int MSGID_PWSCHEME_CANNOT_ENCODE_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 5;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * FIFO-based entry cache max memory percentage configuration attribute.  This
   * does not take any arguments.
   */
  public static final int MSGID_FIFOCACHE_DESCRIPTION_MAX_MEMORY_PCT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 6;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the percentage of memory to use for the FIFO-based
   * entry cache.  This takes three arguments, which are the DN of the
   * configuration entry, a string representation of the exception that was
   * caught, and the default percentage value that will be used.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DETERMINE_MAX_MEMORY_PCT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 7;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * FIFO-based entry cache max memory percentage configuration attribute.  This
   * does not take any arguments.
   */
  public static final int MSGID_FIFOCACHE_DESCRIPTION_MAX_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 8;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the maximum number of entries to hold in the FIFO-based
   * entry cache.  This takes two arguments, which are the DN of the
   * configuration entry and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DETERMINE_MAX_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 9;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * FIFO-based entry cache lock timeout configuration attribute.  This does not
   * take any arguments.
   */
  public static final int MSGID_FIFOCACHE_DESCRIPTION_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 10;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the lock timeout to use for the FIFO-based entry cache.
   * This takes three arguments, which are the DN of the configuration entry, a
   * string representation of the exception that was caught, and the default
   * lock timeout that will be used.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DETERMINE_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 11;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * FIFO-based entry cache include filters configuration attribute.  This does
   * not take any arguments.
   */
  public static final int MSGID_FIFOCACHE_DESCRIPTION_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 12;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode an include filter.  This takes three arguments, which are
   * the invalid filter string, the DN of the configuration entry, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DECODE_INCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 13;
 
 
 
  /**
   * The message ID for the message that will be used if none of the include
   * filter strings can be parsed.  This takes a single argument, which is the
   * DN of the configuration entry.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DECODE_ANY_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 14;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the include filters to use for the FIFO-based entry
   * cache.  This takes two arguments, which are the DN of the configuration
   * entry and a string representation of the exception that was caught.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DETERMINE_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 15;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * FIFO-based entry cache exclude filters configuration attribute.  This does
   * not take any arguments.
   */
  public static final int MSGID_FIFOCACHE_DESCRIPTION_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 16;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode an exclude filter.  This takes three arguments, which are
   * the invalid filter string, the DN of the configuration entry, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DECODE_EXCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 17;
 
 
 
  /**
   * The message ID for the message that will be used if none of the exclude
   * filter strings can be parsed.  This takes a single argument, which is the
   * DN of the configuration entry.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DECODE_ANY_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 18;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the exclude filters to use for the FIFO-based entry
   * cache.  This takes two arguments, which are the DN of the configuration
   * entry and a string representation of the exception that was caught.
   */
  public static final int MSGID_FIFOCACHE_CANNOT_DETERMINE_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 19;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid max memory percentage.  This takes two arguments, which are the DN
   * of the configuration entry and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_FIFOCACHE_INVALID_MAX_MEMORY_PCT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 20;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid max entries.  This takes two arguments, which are the DN of the
   * configuration entry and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_FIFOCACHE_INVALID_MAX_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 21;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid lock timeout.  This takes two arguments, which are the DN of the
   * configuration entry and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_FIFOCACHE_INVALID_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 22;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid include filter.  This takes three arguments, which are the DN
   * of the configuration entry, the invalid filter string, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FIFOCACHE_INVALID_INCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 23;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid set of include filters.  This takes two arguments, which are the DN
   * of the configuration entry and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_FIFOCACHE_INVALID_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 24;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid exclude filter.  This takes three arguments, which are the DN
   * of the configuration entry, the invalid filter string, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FIFOCACHE_INVALID_EXCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 25;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid set of exclude filters.  This takes two arguments, which are the DN
   * of the configuration entry and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_FIFOCACHE_INVALID_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 26;
 
 
 
  /**
   * The message ID for the message that will be used if entry cache memory
   * percent has been updated.  This takes two arguments, which are the new
   * percentage of memory that may be used and the corresponding size in bytes.
   */
  public static final int MSGID_FIFOCACHE_UPDATED_MAX_MEMORY_PCT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 27;
 
 
 
  /**
   * The message ID for the message that will be used if maximum number of cache
   * entries has been updated.  This takes a single argument, which is the new
   * maximum number of entries.
   */
  public static final int MSGID_FIFOCACHE_UPDATED_MAX_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 28;
 
 
 
  /**
   * The message ID for the message that will be used if the cache lock timeout
   * has been updated.  This takes a single argument, which is the new lock
   * timeout.
   */
  public static final int MSGID_FIFOCACHE_UPDATED_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 29;
 
 
 
  /**
   * The message ID for the message that will be used if the cache include
   * filter set has been updated.  This does not take any arguments.
   */
  public static final int MSGID_FIFOCACHE_UPDATED_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 30;
 
 
 
  /**
   * The message ID for the message that will be used if the cache exclude
   * filter set has been updated.  This does not take any arguments.
   */
  public static final int MSGID_FIFOCACHE_UPDATED_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 31;
 
 
 
  /**
   * The message ID for the message that will be used if a password modify
   * extended request sequence contains an element with an invalid type.  This
   * takes a single argument, which is a string representation of that type.
   */
  public static final int MSGID_EXTOP_PASSMOD_ILLEGAL_REQUEST_ELEMENT_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 32;
 
 
 
  /**
   * The message ID for the message that will be used if a password modify
   * extended request sequence cannot be decoded for some reason.  This takes a
   * single argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_DECODE_REQUEST =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 33;
 
 
 
  /**
   * The message ID for the message that will be used if a password modify
   * extended request sequence cannot be processed because it did not contain
   * an authorization ID and the underlying connection is not authenticated.
   * This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_NO_AUTH_OR_USERID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 34;
 
 
 
  /**
   * The message ID for the message that will be used if a password modify
   * extended request sequence cannot be processed because the server could not
   * obtain a write lock on the user's entry.  This takes a single argument,
   * which is the DN of the user's entry.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_LOCK_USER_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 35;
 
 
 
  /**
   * The message ID for the message that will be used if the DN used as the
   * authorization ID for the password modify operation cannot be decoded.
   * This takes a single argument, which is the value provided for the
   * authorization ID.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_DECODE_AUTHZ_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 36;
 
 
 
  /**
   * The message ID for the message that will be used if the DN used as the
   * authorization ID for the password modify operation cannot be decoded.
   * This takes a single argument, which is the value provided for the
   * authorization ID.
   */
  public static final int MSGID_EXTOP_PASSMOD_INVALID_AUTHZID_STRING =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 37;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * retrieve the entry targeted by DN in a password modify operation.  This
   * takes a single argument, which is the target DN.
   */
  public static final int MSGID_EXTOP_PASSMOD_NO_USER_ENTRY_BY_AUTHZID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 38;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * retrieve the entry targeted by UID in a password modify operation.  This
   * takes a single argument, which is the target UID.
   */
  public static final int MSGID_EXTOP_PASSMOD_NO_DN_BY_AUTHZID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 39;
 
 
 
  /**
   * The message ID for the message that will be used if multiple entries
   * matched the provided authorization ID.  This takes a single argument, which
   * is the target UID.
   */
  public static final int MSGID_EXTOP_PASSMOD_MULTIPLE_ENTRIES_BY_AUTHZID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 40;
 
 
 
  /**
   * The message ID for the message that will be used if the old password
   * provided in a password modify request is invalid.  This does not take any
   * arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_INVALID_OLD_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 41;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * access a key manager without having one defined in the configuration.
   */
  public static final int MSGID_NULL_KEYMANAGER_NO_MANAGER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 42;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the location of the key manager file.
   * This does not take any arguments.
   */
  public static final int MSGID_FILE_KEYMANAGER_DESCRIPTION_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 43;
 
 
 
  /**
   * The message ID for the message that will be used if no file is specified
   * for a file-based keystore.  This takes a single argument, which is the DN
   * of the configuration entry.
   */
  public static final int MSGID_FILE_KEYMANAGER_NO_FILE_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 44;
 
 
 
  /**
   * The message ID for the message that will be used if the file specified for
   * a file-based keystore does not exist.  This takes two arguments, which are
   * the specified path to the file and the DN of the configuration entry.
   */
  public static final int MSGID_FILE_KEYMANAGER_NO_SUCH_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 45;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the path to the keystore file.  This takes two
   * arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 46;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the keystore type.  This does not take
   * any arguments.
   */
  public static final int MSGID_FILE_KEYMANAGER_DESCRIPTION_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 47;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the keystore type.  This takes two arguments, which are
   * the DN of the configuration entry and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 48;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the Java property containing the
   * keystore PIN.  This does not take any arguments.
   */
  public static final int MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_PROPERTY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 49;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in a Java property but that property is not set.  This takes
   * two arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_FILE_KEYMANAGER_PIN_PROPERTY_NOT_SET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 50;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the Java property containing the keystore PIN.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_PROPERTY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 51;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the environment variable containing the
   * keystore PIN.  This does not take any arguments.
   */
  public static final int MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_ENVAR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 52;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in an environment variable but that variable is not set.  This
   * takes two arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_FILE_KEYMANAGER_PIN_ENVAR_NOT_SET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 53;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the environment variable containing the keystore PIN.
   * This takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_ENVAR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 54;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the file containing the keystore PIN.
   * This does not take any arguments.
   */
  public static final int MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 55;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in a file but that file does not exist.  This takes two
   * arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_FILE_KEYMANAGER_PIN_NO_SUCH_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 56;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to read the keystore PIN file.  This takes three arguments,
   * which are the path to the PIN file, the DN of the configuration entry, and
   * a string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_PIN_FILE_CANNOT_READ =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 57;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in a file but that file is empty.  This takes two arguments,
   * which are the name of that property and the DN of the configuration entry.
   */
  public static final int MSGID_FILE_KEYMANAGER_PIN_FILE_EMPTY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 58;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the path to the file containing the keystore PIN.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 59;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the keystore PIN. This does not take any
   * arguments.
   */
  public static final int MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 60;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the keystore PIN.  This takes two arguments, which are
   * the DN of the configuration entry and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 60;
 
 
 
  /**
   * The message ID for the message that will be used if the key manager
   * configuration entry does not provide a means of obtaining the PIN.  This
   * takes a single argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_FILE_KEYMANAGER_NO_PIN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 61;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to load the keystore.  This takes two arguments, which are the
   * path to the keystore file and a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_LOAD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 62;
 
 
 
  /**
   * The message ID for the message that will be used if an invalid keystore
   * type is specified.  This takes three arguments, which are the provided
   * keystore type, the DN of the configuration entry, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_INVALID_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 63;
 
 
 
  /**
   * The message ID for the message that will be used if the path to the
   * keystore file is updated.  This takes two arguments, which are the DN of
   * the configuration entry and the new path to the keystore file.
   */
  public static final int MSGID_FILE_KEYMANAGER_UPDATED_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 64;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore type is
   * updated.  This takes two arguments, which are the DN of the configuration
   * entry and the new keystore type.
   */
  public static final int MSGID_FILE_KEYMANAGER_UPDATED_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 65;
 
 
 
  /**
   * The message ID for the message that will be used if the PIN used to access
   * the keystore is updated.  This does not take any arguments.
   */
  public static final int MSGID_FILE_KEYMANAGER_UPDATED_PIN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 66;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the Java property containing the
   * keystore PIN.  This does not take any arguments.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_PROPERTY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 67;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in a Java property but that property is not set.  This takes
   * two arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_PIN_PROPERTY_NOT_SET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 68;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the Java property containing the keystore PIN.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int
       MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_PROPERTY =
            CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 69;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the environment variable containing the
   * keystore PIN.  This does not take any arguments.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_ENVAR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 70;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in an environment variable but that variable is not set.  This
   * takes two arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_PIN_ENVAR_NOT_SET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 71;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the environment variable containing the keystore PIN.
   * This takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_ENVAR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 72;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the file containing the keystore PIN.
   * This does not take any arguments.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 73;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in a file but that file does not exist.  This takes two
   * arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_PIN_NO_SUCH_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 74;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to read the keystore PIN file.  This takes three arguments,
   * which are the path to the PIN file, the DN of the configuration entry, and
   * a string representation of the exception that was caught.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_PIN_FILE_CANNOT_READ =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 75;
 
 
 
  /**
   * The message ID for the message that will be used if the keystore PIN should
   * be specified in a file but that file is empty.  This takes two arguments,
   * which are the name of that property and the DN of the configuration entry.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_PIN_FILE_EMPTY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 76;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the path to the file containing the keystore PIN.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 77;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the keystore PIN. This does not take any
   * arguments.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 78;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the keystore PIN.  This takes two arguments, which are
   * the DN of the configuration entry and a string representation of the
   * exception that was caught.
   */
  public static final int
       MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR =
            CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 79;
 
 
 
  /**
   * The message ID for the message that will be used if the key manager
   * configuration entry does not provide a means of obtaining the PIN.  This
   * takes a single argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_NO_PIN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 80;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to load the keystore.  This takes a single argument, which is a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_CANNOT_LOAD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 81;
 
 
 
  /**
   * The message ID for the message that will be used if the PIN used to access
   * the keystore is updated.  This does not take any arguments.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_UPDATED_PIN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 82;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting create a trust factory for the file-based trust store.  This
   * takes two arguments, which are the name of the trust store file and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_KEYMANAGER_CANNOT_CREATE_FACTORY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 83;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting create a trust factory for the PKCS#11 trust store.  This takes
   * a single argument, which is a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_PKCS11_KEYMANAGER_CANNOT_CREATE_FACTORY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 84;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the location of the trust manager file.
   * This does not take any arguments.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_DESCRIPTION_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 85;
 
 
 
  /**
   * The message ID for the message that will be used if no file is specified
   * for a file-based trust store.  This takes a single argument, which is the
   * DN of the configuration entry.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_NO_FILE_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 86;
 
 
 
  /**
   * The message ID for the message that will be used if the file specified for
   * a file-based trust store does not exist.  This takes two arguments, which
   * are the specified path to the file and the DN of the configuration entry.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_NO_SUCH_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 87;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the path to the trust store file.  This takes two
   * arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 88;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the trust store type.  This does not
   * take any arguments.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_DESCRIPTION_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 89;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the trust store type.  This takes two arguments, which
   * are the DN of the configuration entry and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 90;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the Java property containing the
   * trust store PIN.  This does not take any arguments.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_PROPERTY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 91;
 
 
 
  /**
   * The message ID for the message that will be used if the trust store PIN
   * should be specified in a Java property but that property is not set.  This
   * takes two arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_PIN_PROPERTY_NOT_SET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 92;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the Java property containing the trust store PIN.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int
       MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_PROPERTY =
            CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 93;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the environment variable containing the
   * trust store PIN.  This does not take any arguments.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_ENVAR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 94;
 
 
 
  /**
   * The message ID for the message that will be used if the trust store PIN
   * should be specified in an environment variable but that variable is not
   * set.  This takes two arguments, which are the name of that property and the
   * DN of the configuration entry.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_PIN_ENVAR_NOT_SET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 95;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the environment variable containing the trust store
   * PIN.  This takes two arguments, which are the DN of the configuration entry
   * and a string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_ENVAR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 96;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the file containing the trust store PIN.
   * This does not take any arguments.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 97;
 
 
 
  /**
   * The message ID for the message that will be used if the trust store PIN
   * should be specified in a file but that file does not exist.  This takes two
   * arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_PIN_NO_SUCH_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 98;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to read the trust store PIN file.  This takes three arguments,
   * which are the path to the PIN file, the DN of the configuration entry, and
   * a string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_PIN_FILE_CANNOT_READ =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 99;
 
 
 
  /**
   * The message ID for the message that will be used if the trust store PIN
   * should be specified in a file but that file is empty.  This takes two
   * arguments, which are the name of that property and the DN of the
   * configuration entry.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_PIN_FILE_EMPTY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 100;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the path to the file containing the trust store PIN.
   * This takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 101;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute specifying the trust store PIN. This does not take
   * any arguments.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 102;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the trust store PIN.  This takes two arguments, which
   * are the DN of the configuration entry and a string representation of the
   * exception that was caught.
   */
  public static final int
       MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR =
            CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 103;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to load the trust store.  This takes two arguments, which are
   * the path to the trust store file and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_CANNOT_LOAD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 104;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting create a trust factory for the file-based trust store.  This
   * takes two arguments, which are the name of the trust store file and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_CANNOT_CREATE_FACTORY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 105;
 
 
 
  /**
   * The message ID for the message that will be used if an invalid trust store
   * type is specified.  This takes three arguments, which are the provided
   * trust store type, the DN of the configuration entry, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_INVALID_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 106;
 
 
 
  /**
   * The message ID for the message that will be used if the path to the
   * trust store file is updated.  This takes two arguments, which are the DN of
   * the configuration entry and the new path to the trust store file.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_UPDATED_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 107;
 
 
 
  /**
   * The message ID for the message that will be used if the trust store type is
   * updated.  This takes two arguments, which are the DN of the configuration
   * entry and the new trust store type.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_UPDATED_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 108;
 
 
 
  /**
   * The message ID for the message that will be used if the PIN used to access
   * the trust store is updated.  This does not take any arguments.
   */
  public static final int MSGID_FILE_TRUSTMANAGER_UPDATED_PIN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 109;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected error
   * occurs while attempting to read data from a client using the null security
   * provider.  This takes a single argument, which is a string representation
   * of the exception that was caught.
   */
  public static final int MSGID_NULL_SECURITY_PROVIDER_READ_ERROR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 110;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected error
   * occurs while attempting to write data to a client using the null security
   * provider.  This takes a single argument, which is a string representation
   * of the exception that was caught.
   */
  public static final int MSGID_NULL_SECURITY_PROVIDER_WRITE_ERROR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 111;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to initialize the SSL context for the TLS connection security
   * provider.  This takes a single argument, which is a string representation
   * of the exception that was caught.
   */
  public static final int MSGID_TLS_SECURITY_PROVIDER_CANNOT_INITIALIZE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 112;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected result is
   * returned to the TLS connection security provider when trying to unwrap SSL
   * data read from the client.  This takes a single argument, which is a string
   * representation of the unwrap result that was returned.
   */
  public static final int MSGID_TLS_SECURITY_PROVIDER_UNEXPECTED_UNWRAP_STATUS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 113;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected error is
   * encountered while attempting to read data from the client using the TLS
   * connection security provider.  This takes a single argument, which is a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_TLS_SECURITY_PROVIDER_READ_ERROR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 114;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to write
   * data to the client cannot be processed because outstanding SSL negotiation
   * needs to read data from the client and there is none available.  This does
   * not take any arguments.
   */
  public static final int MSGID_TLS_SECURITY_PROVIDER_WRITE_NEEDS_UNWRAP =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 115;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected result is
   * returned to the TLS connection security provider when trying to wrap data
   * to write to the client.  This takes a single argument, which is a string
   * representation of the wrap result that was returned.
   */
  public static final int MSGID_TLS_SECURITY_PROVIDER_UNEXPECTED_WRAP_STATUS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 116;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected error is
   * encountered while attempting to write data to the client using the TLS
   * connection security provider.  This takes a single argument, which is a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_TLS_SECURITY_PROVIDER_WRITE_ERROR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 117;
 
 
 
  /**
   * The message ID for the message that will be used if the subject equals DN
   * certificate mapper is asked to map a null or empty certificate chain.  This
   * does not take any arguments.
   */
  public static final int MSGID_SEDCM_NO_PEER_CERTIFICATE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 118;
 
 
 
  /**
   * The message ID for the message that will be used if the subject equals DN
   * certificate mapper is asked to map a certificate chain in which the peer
   * certificate is not an X.509 certificate.  This takes a single argument,
   * which is the certificate type for the peer certificate.
   */
  public static final int MSGID_SEDCM_PEER_CERT_NOT_X509 =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 119;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * the subject equals DN certificate mapper is trying to decode the peer
   * certificate's subject as a DN.  This takes two arguments, which are a
   * string representation of the peer's subject and a message that explains the
   * reason it could not be decoded.
   */
  public static final int MSGID_SEDCM_CANNOT_DECODE_SUBJECT_AS_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 120;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * the subject equals DN certificate mapper is trying to retrieve the entry
   * with a DN equal to the subject DN.  This takes two arguments, which are a
   * string representation of the peer's subject DN and a message that explains
   * the reason the entry could not be retrieved.
   */
  public static final int MSGID_SEDCM_CANNOT_GET_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 121;
 
 
 
  /**
   * The message ID for the message that will be used if the subject equals DN
   * certificate mapper is asked to map a certificate when no user exists in the
   * directory with a DN equal to the certificate subject.  This takes a single
   * argument, which is the subject DN from the peer certificate.
   */
  public static final int MSGID_SEDCM_NO_USER_FOR_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 122;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a SASL EXTERNAL bind when no client connection is available.  This
   * does not take any arguments.
   */
  public static final int MSGID_SASLEXTERNAL_NO_CLIENT_CONNECTION =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 123;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a SASL EXTERNAL bind using a client connection that does not have a
   * security provider.  This does not take any arguments.
   */
  public static final int MSGID_SASLEXTERNAL_NO_SECURITY_PROVIDER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 124;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a SASL EXTERNAL bind on a client connection that is using a
   * security provider other than the TLS security provider.  This takes a
   * single argument, which is the name of the security provider in use.
   */
  public static final int MSGID_SASLEXTERNAL_CLIENT_NOT_USING_TLS_PROVIDER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 125;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a SASL EXTERNAL bind over a client connection that did not present
   * a certificate chain.  This does not take any arguments.
   */
  public static final int MSGID_SASLEXTERNAL_NO_CLIENT_CERT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 126;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a SASL EXTERNAL bind but no mapping could be established between
   * the client certificate chain and a user in the directory.  This does not
   * take any arguments.
   */
  public static final int MSGID_SASLEXTERNAL_NO_MAPPING =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 127;
 
 
 
  /**
   * The message ID for the message that will be used if a client attempts to
   * use the StartTLS extended operation but the client connection is not
   * available.  This does not take any arguments.
   */
  public static final int MSGID_STARTTLS_NO_CLIENT_CONNECTION =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 128;
 
 
 
  /**
   * The message ID for the message that will be used if a client attempts to
   * use the StartTLS extended operation but the type of client connection used
   * does not allow StartTLS.  This does not take any arguments.
   */
  public static final int MSGID_STARTTLS_NOT_TLS_CAPABLE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 129;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to enable StartTLS on a client connection.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_STARTTLS_ERROR_ON_ENABLE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 130;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to configure client certificate validation.  This does not
   * take any arguments.
   */
  public static final int MSGID_SASLEXTERNAL_DESCRIPTION_VALIDATION_POLICY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 131;
 
 
 
  /**
   * The message ID for the message that will be used if the attribute used to
   * configure client certificate validation policy has an invalid value.  This
   * takes two arguments, which are the DN of the configuration entry and the
   * invalid value.
   */
  public static final int MSGID_SASLEXTERNAL_INVALID_VALIDATION_VALUE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 132;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the client certificate validation policy.  This takes
   * two arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLEXTERNAL_CANNOT_GET_VALIDATION_POLICY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 133;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the attribute holding certificates in user
   * entries.  This does not take any arguments.
   */
  public static final int MSGID_SASLEXTERNAL_DESCRIPTION_CERTIFICATE_ATTRIBUTE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 134;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the attribute to use for certificate validation.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLEXTERNAL_CANNOT_GET_CERT_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 135;
 
 
 
  /**
   * The message ID for the message that will be used if the certificate
   * attribute is not defined in the server schema.  This takes two arguments,
   * which are the name of the certificate attribute and the DN of the
   * configuration entry.
   */
  public static final int MSGID_SASLEXTERNAL_UNKNOWN_CERT_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 136;
 
 
 
  /**
   * The message ID for the message that will be used if certificate validation
   * is required but the user entry does not contain any certificates.  This
   * takes a single argument, which is the DN of the user's entry.
   */
  public static final int MSGID_SASLEXTERNAL_NO_CERT_IN_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 137;
 
 
 
  /**
   * The message ID for the message that will be used if certificate validation
   * is required but the user entry does not contain a certificate that matches
   * the peer certificate.  This takes a single argument, which is the DN of the
   * user's entry.
   */
  public static final int MSGID_SASLEXTERNAL_PEER_CERT_NOT_FOUND =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 138;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to validate the peer certificate against a certificate in the
   * user's entry.  This takes two arguments, which are the DN of the user's
   * entry and a string representation of the exception that was caught.
   */
  public static final int MSGID_SASLEXTERNAL_CANNOT_VALIDATE_CERT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 139;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the peer
   * certificate validation policy has been updated.  This takes two arguments,
   * which are the DN of the configuration entry and the new validation policy.
   */
  public static final int MSGID_SASLEXTERNAL_UPDATED_VALIDATION_POLICY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 140;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * certificate attribute for peer validation has been updated.  This takes two
   * arguments, which are the DN of the configuration entry and the new
   * attribute type name or OID.
   */
  public static final int MSGID_SASLEXTERNAL_UPDATED_CERT_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 141;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the username attribute used to locate entries
   * when authenticating via SASL PLAIN.  This does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_DESCRIPTION_USERNAME_ATTRIBUTE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 142;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the attribute to use for username lookups.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_GET_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 143;
 
 
 
  /**
   * The message ID for the message that will be used if the username attribute
   * is not defined in the server schema.  This takes two arguments, which are
   * the name of the username attribute and the DN of the configuration entry.
   */
  public static final int MSGID_SASLPLAIN_UNKNOWN_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 144;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the user base DN used to locate entries when
   * authenticating via SASL PLAIN.  This does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_DESCRIPTION_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 145;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the base DN to use for username lookups.  This takes
   * two arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_GET_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 146;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL PLAIN bind
   * request does not include any SASL credentials.  This does not take any
   * arguments.
   */
  public static final int MSGID_SASLPLAIN_NO_SASL_CREDENTIALS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 147;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL PLAIN bind
   * request does not include null characters in the SASL credentials.  This
   * does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_NO_NULLS_IN_CREDENTIALS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 148;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL PLAIN bind
   * request does not include a second null character to separate the authcID
   * from the password.  This does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_NO_SECOND_NULL =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 149;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL PLAIN bind
   * request included a zero-length authcID.  This does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_ZERO_LENGTH_AUTHCID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 150;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL PLAIN bind
   * request included a zero-length password.  This does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_ZERO_LENGTH_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 151;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL PLAIN bind
   * request included an authentication ID that started with "dn:" but the rest
   * of the value couldn't be decoded as a DN.  This takes two arguments, which
   * are the provided authentication ID and a message with information about the
   * DN decoding failure.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_DECODE_AUTHCID_AS_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 152;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL PLAIN bind
   * request included an authentication ID of "dn:" (i.e., a zero-length DN).
   * This does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_AUTHCID_IS_NULL_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 153;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to retrieve an entry by DN for a SASL PLAIN bind request.  This
   * takes two arguments, which are the DN of the entry and a message with
   * information about the reason it could not be retrieved.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_GET_ENTRY_BY_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 154;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to perform an internal search to resolve an authentication ID to
   * a user entry.  This takes three arguments, which are the authentication ID,
   * a string representation of the result code, and the error message from the
   * search operation.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_PERFORM_INTERNAL_SEARCH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 155;
 
 
 
  /**
   * The message ID for the message that will be used if an internal search
   * to resolve the provided username matches multiple entries.  This takes a
   * single argument, which is the authentication ID.
   */
  public static final int MSGID_SASLPLAIN_MULTIPLE_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 156;
 
 
 
  /**
   * The message ID for the message that will be used if an internal search
   * to resolve the provided username does not match any entries.  This takes a
   * single argument, which is the authentication ID.
   */
  public static final int MSGID_SASLPLAIN_NO_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 157;
 
 
 
  /**
   * The message ID for the message that will be used if a user entry does not
   * contain a password attribute.  This takes a single argument, which is the
   * name or OID of the password attribute.
   */
  public static final int MSGID_SASLPLAIN_NO_PW_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 158;
 
 
 
  /**
   * The message ID for the message that will be used if a user entry has a
   * password with an unrecognized storage scheme.  This takes two arguments,
   * which are the DN of the user and the name of the unknown storage scheme.
   */
  public static final int MSGID_SASLPLAIN_UNKNOWN_STORAGE_SCHEME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 159;
 
 
 
  /**
   * The message ID for the message that will be used if SASL PLAIN
   * authentication fails because the user provided an invalid password.
   */
  public static final int MSGID_SASLPLAIN_INVALID_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 160;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * username attribute for authcID/authzID lookups has been updated.  This
   * takes two arguments, which are the DN of the configuration entry and the
   * new attribute type name or OID.
   */
  public static final int MSGID_SASLPLAIN_UPDATED_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 161;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the user
   * base DN for authcID/authzID lookups has been updated.  This takes two
   * arguments, which are the DN of the configuration entry and the new base DN.
   */
  public static final int MSGID_SASLPLAIN_UPDATED_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 162;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * obtain a read lock on an entry targeted by a SASL PLAIN bind request.  This
   * takes a single argument, which is the DN of the target entry.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_LOCK_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 163;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * obtain a read lock on an entry with a DN equal to the certificate subject.
   * This takes a single argument, which is the DN of the target entry.
   */
  public static final int MSGID_SEDCM_CANNOT_LOCK_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 164;
 
 
 
  /**
   * The message ID for the message that will be written to the error log if a
   * client binds using SASL ANONYMOUS and provides trace information in the
   * request.  This takes three arguments, which are the connection ID for the
   * client connection, the operation ID for the bind request, and the trace
   * information from the request.
   */
  public static final int MSGID_SASLANONYMOUS_TRACE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 165;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * obtain a message digest for generating MD5 hashes.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_GET_MESSAGE_DIGEST =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 166;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the username attribute used to locate entries
   * when authenticating via SASL CRAM-MD5.  This does not take any arguments.
   */
  public static final int MSGID_SASLCRAMMD5_DESCRIPTION_USERNAME_ATTRIBUTE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 167;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the attribute to use for username lookups.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_GET_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 168;
 
 
 
  /**
   * The message ID for the message that will be used if the username attribute
   * is not defined in the server schema.  This takes two arguments, which are
   * the name of the username attribute and the DN of the configuration entry.
   */
  public static final int MSGID_SASLCRAMMD5_UNKNOWN_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 169;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the user base DN used to locate entries when
   * authenticating via SASL CRAM-MD5.  This does not take any arguments.
   */
  public static final int MSGID_SASLCRAMMD5_DESCRIPTION_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 170;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the base DN to use for username lookups.  This takes
   * two arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_GET_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 171;
 
 
 
  /**
   * The message ID for the message that will be used if SASL CRAM-MD5
   * authentication fails because there is no stored challenge to use in
   * processing a second-stage request.  This does not take any arguments.
   */
  public static final int MSGID_SASLCRAMMD5_NO_STORED_CHALLENGE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 172;
 
 
 
  /**
   * The message ID for the message that will be used if SASL CRAM-MD5
   * authentication fails because the stored challenge is an invalid type of
   * object.  This does not take any arguments.
   */
  public static final int MSGID_SASLCRAMMD5_INVALID_STORED_CHALLENGE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 173;
 
 
 
  /**
   * The message ID for the message that will be used if SASL CRAM-MD5
   * authentication fails because the SASL credentials do not contain a space to
   * separate the username from the password digest.  This does not take any
   * arguments.
   */
  public static final int MSGID_SASLCRAMMD5_NO_SPACE_IN_CREDENTIALS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 174;
 
 
 
  /**
   * The message ID for the message that will be used if the digest in the SASL
   * CRAM-MD5 credentials has an invalid length.  This takes two arguments,
   * which are the length of the provided credentials and the expected length.
   */
  public static final int MSGID_SASLCRAMMD5_INVALID_DIGEST_LENGTH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 175;
 
 
 
  /**
   * The message ID for the message that will be used if the digest in the SASL
   * CRAM-MD5 credentials is not comprised entirely of hex characters.  This
   * takes a single argument, which is an explanation of the problem found.
   */
  public static final int MSGID_SASLCRAMMD5_INVALID_DIGEST_CONTENT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 176;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL CRAM-MD5 bind
   * request included a username that started with "dn:" but the rest of the
   * value couldn't be decoded as a DN.  This takes two arguments, which are the
   * are the provided username and a message with information about the DN
   * decoding failure.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_DECODE_USERNAME_AS_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 177;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL CRAM-MD5 bind
   * request included a username of "dn:" (i.e., a zero-length DN).  This does
   * not take any arguments.
   */
  public static final int MSGID_SASLCRAMMD5_USERNAME_IS_NULL_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 178;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * obtain a read lock on an entry targeted by a SASL CRAM-MD5 bind request.
   * This takes a single argument, which is the DN of the target entry.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_LOCK_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 179;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to retrieve an entry by DN for a SASL CRAM-MD5 bind request.
   * This takes two arguments, which are the DN of the entry and a message with
   * information about the reason it could not be retrieved.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_GET_ENTRY_BY_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 180;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL CRAM-MD5 bind
   * request included a zero-length username.  This does not take any arguments.
   */
  public static final int MSGID_SASLCRAMMD5_ZERO_LENGTH_USERNAME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 181;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to perform an internal search to resolve a username to a user
   * entry.  This takes three arguments, which are the username, a string
   * representation of the result code, and the error message from the search
   * operation.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_PERFORM_INTERNAL_SEARCH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 182;
 
 
 
  /**
   * The message ID for the message that will be used if an internal search
   * to resolve the provided username matches multiple entries.  This takes a
   * single argument, which is the username.
   */
  public static final int MSGID_SASLCRAMMD5_MULTIPLE_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 183;
 
 
 
  /**
   * The message ID for the message that will be used if an internal search
   * to resolve the provided username does not match any entries.  This takes a
   * single argument, which is the username.
   */
  public static final int MSGID_SASLCRAMMD5_NO_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 184;
 
 
 
  /**
   * The message ID for the message that will be used if a user entry does not
   * contain a password attribute.  This takes a single argument, which is the
   * name or OID of the password attribute.
   */
  public static final int MSGID_SASLCRAMMD5_NO_PW_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 185;
 
 
 
  /**
   * The message ID for the message that will be used if a user entry has a
   * password with an unrecognized storage scheme.  This takes two arguments,
   * which are the DN of the user and the name of the unknown storage scheme.
   */
  public static final int MSGID_SASLCRAMMD5_UNKNOWN_STORAGE_SCHEME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 186;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to obtain the clear-text version of a password that is encoded with
   * what should be a reversible storage scheme.  This takes three arguments,
   * which are the DN of the user, the name of the storage scheme, and a message
   * explaining the problem.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_GET_CLEAR_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 187;
 
 
 
  /**
   * The message ID for the message that will be used if SASL CRAM-MD5
   * authentication fails because the user provided an invalid password.
   */
  public static final int MSGID_SASLCRAMMD5_INVALID_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 188;
 
 
 
  /**
   * The message ID for the message that will be used if SASL CRAM-MD5
   * authentication fails because the user entry does not have any passwords
   * stored in a reversible form.  This takes a single argument, which is the
   * DN of the user.
   */
  public static final int MSGID_SASLCRAMMD5_NO_REVERSIBLE_PASSWORDS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 189;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * attribute for username lookups has been updated.  This takes two arguments,
   * which are the DN of the configuration entry and the new attribute type name
   * or OID.
   */
  public static final int MSGID_SASLCRAMMD5_UPDATED_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 190;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the base
   * DN for username lookups has been updated.  This takes two arguments, which
   * are the DN of the configuration entry and the new base DN.
   */
  public static final int MSGID_SASLCRAMMD5_UPDATED_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 191;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * obtain a message digest for generating MD5 hashes.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_MESSAGE_DIGEST =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 192;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the username attribute used to locate entries
   * when authenticating via SASL DIGEST-MD5.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_DESCRIPTION_USERNAME_ATTRIBUTE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 193;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the attribute to use for username lookups.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 194;
 
 
 
  /**
   * The message ID for the message that will be used if the username attribute
   * is not defined in the server schema.  This takes two arguments, which are
   * the name of the username attribute and the DN of the configuration entry.
   */
  public static final int MSGID_SASLDIGESTMD5_UNKNOWN_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 195;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the user base DN used to locate entries when
   * authenticating via SASL DIGEST-MD5.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_DESCRIPTION_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 196;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the base DN to use for username lookups.  This takes
   * two arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 197;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the realm for DIGEST-MD5 authentication.  This
   * does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_DESCRIPTION_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 198;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the realm to advertise for DIGEST-MD5 authentication.
   * This takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 199;
 
 
 
  /**
   * The message ID for the message that will be used if the initial challenge
   * generated by the server is not less than 2048 bytes.  This takes a single
   * argument, which is the size of the generated challenge.
   */
  public static final int MSGID_SASLDIGESTMD5_CHALLENGE_TOO_LONG =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 200;
 
 
 
  /**
   * The message ID for the message that will be used if the client provides
   * SASL credentials but the server doesn't have any previous SASL state for
   * that client.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_STORED_STATE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 201;
 
 
 
  /**
   * The message ID for the message that will be used if the client provides
   * SASL credentials but the stored SASL state information isn't appropriate
   * for DIGEST-MD5 authentication.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_STORED_STATE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 202;
 
 
 
  /**
   * The message ID for the message that will be used if the client credentials
   * cannot be parsed as a string using the ISO-8859-1 character set.  This
   * takes two arguments, which are the name of the character set used and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_PARSE_ISO_CREDENTIALS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 203;
 
 
 
  /**
   * The message ID for the message that will be used if the client credentials
   * cannot be parsed as a string using the UTF-8 character set.  This takes a
   * single argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_PARSE_UTF8_CREDENTIALS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 204;
 
 
 
  /**
   * The message ID for the message that will be used if the client credentials
   * contain a token with no equal sign.  This takes two arguments, which are
   * the invalid token and the position at which it begins in the credential
   * string.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_TOKEN_IN_CREDENTIALS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 205;
 
 
 
  /**
   * The message ID for the message that will be used if the client credentials
   * specify a character set of anything other than UTF-8.  This takes a single
   * argument, which is the character set specified by the client.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_CHARSET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 206;
 
 
 
  /**
   * The message ID for the message that will be used if the realm provided by
   * the client is expected to be a DN but cannot be parsed as one.  This takes
   * two arguments, which are the provided realm value and a message explaining
   * the problem that was encountered.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_DECODE_REALM_AS_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 207;
 
 
 
  /**
   * The message ID for the message that will be used if the realm provided by
   * the client is not what was expected.  This takes a single argument, which
   * is the realm that was provided.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 208;
 
 
 
  /**
   * The message ID for the message that will be used if the nonce provided by
   * the client does not match the nonce supplied by the server.  This does not
   * take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_NONCE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 209;
 
 
 
  /**
   * The message ID for the message that will be used if the nonce count
   * provided by the client cannot be decoded as an integer.  This takes a
   * single argument, which is the provided nonce count.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_DECODE_NONCE_COUNT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 210;
 
 
 
  /**
   * The message ID for the message that will be used if the nonce count
   * stored by the server for the client connection cannot be decoded as an
   * integer.  This takes a single argument, which is a string representation of
   * the exception that was caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_DECODE_STORED_NONCE_COUNT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 211;
 
 
 
  /**
   * The message ID for the message that will be used if the nonce count
   * provided by the client is different from what was expected.  This does not
   * take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_NONCE_COUNT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 212;
 
 
 
  /**
   * The message ID for the message that will be used if the client requests the
   * unsupported integrity QoP.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_INTEGRITY_NOT_SUPPORTED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 213;
 
 
 
  /**
   * The message ID for the message that will be used if the client requests the
   * unsupported confidentiality QoP.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_CONFIDENTIALITY_NOT_SUPPORTED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 214;
 
 
 
  /**
   * The message ID for the message that will be used if the client requested an
   * unsupported QoP mechanism.  This takes a single argument, which is the QoP
   * value requested by the client.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_QOP =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 215;
 
 
 
  /**
   * The message ID for the message that will be used if the digest included
   * in the client credentials could not be parsed.  This takes a single
   * argument, which is a string representation of the stack trace that was
   * caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_PARSE_RESPONSE_DIGEST =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 216;
 
 
 
  /**
   * The message ID for the message that will be used if client credentials
   * included an invalid token.  This takes a single argument, which is the
   * name of the invalid token.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_RESPONSE_TOKEN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 217;
 
 
 
  /**
   * The message ID for the message that will be used if client credentials
   * did not include the required "username" token.  This does not take any
   * arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_USERNAME_IN_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 218;
 
 
 
  /**
   * The message ID for the message that will be used if client credentials
   * did not include the required "nonce" token.  This does not take any
   * arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_NONCE_IN_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 219;
 
 
 
  /**
   * The message ID for the message that will be used if client credentials
   * did not include the required "cnonce" token.  This does not take any
   * arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_CNONCE_IN_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 220;
 
 
 
  /**
   * The message ID for the message that will be used if client credentials
   * did not include the required "nc" token.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_NONCE_COUNT_IN_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 221;
 
 
 
  /**
   * The message ID for the message that will be used if client credentials
   * did not include the required "digest-uri" token.  This does not take any
   * arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_DIGEST_URI_IN_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 222;
 
 
 
  /**
   * The message ID for the message that will be used if client credentials
   * did not include the required "response" token.  This does not take any
   * arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_DIGEST_IN_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 223;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL DIGEST-MD5 bind
   * request included a username that started with "dn:" but the rest of the
   * value couldn't be decoded as a DN.  This takes two arguments, which are the
   * are the provided username and a message with information about the DN
   * decoding failure.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_DECODE_USERNAME_AS_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 224;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL DIGEST-MD5 bind
   * request included a username of "dn:" (i.e., a zero-length DN).  This does
   * not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_USERNAME_IS_NULL_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 225;
 
 
 
  /**
   * The message ID for the message that will be used if it is not possible to
   * obtain a read lock on an entry targeted by a SASL DIGEST-MD5 bind request.
   * This takes a single argument, which is the DN of the target entry.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_LOCK_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 226;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to retrieve an entry by DN for a SASL DIGEST-MD5 bind request.
   * This takes two arguments, which are the DN of the entry and a message with
   * information about the reason it could not be retrieved.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_ENTRY_BY_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 227;
 
 
 
  /**
   * The message ID for the message that will be used if a SASL DIGEST-MD5 bind
   * request included a zero-length username.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_ZERO_LENGTH_USERNAME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 228;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to perform an internal search to resolve a username to a user
   * entry.  This takes three arguments, which are the username, a string
   * representation of the result code, and the error message from the search
   * operation.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_PERFORM_INTERNAL_SEARCH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 229;
 
 
 
  /**
   * The message ID for the message that will be used if an internal search
   * to resolve the provided username matches multiple entries.  This takes a
   * single argument, which is the username.
   */
  public static final int MSGID_SASLDIGESTMD5_MULTIPLE_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 230;
 
 
 
  /**
   * The message ID for the message that will be used if an internal search
   * to resolve the provided username does not match any entries.  This takes a
   * single argument, which is the username.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 231;
 
 
 
  /**
   * The message ID for the message that will be used if a user entry does not
   * contain a password attribute.  This takes a single argument, which is the
   * name or OID of the password attribute.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_PW_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 232;
 
 
 
  /**
   * The message ID for the message that will be used if a user entry has a
   * password with an unrecognized storage scheme.  This takes two arguments,
   * which are the DN of the user and the name of the unknown storage scheme.
   */
  public static final int MSGID_SASLDIGESTMD5_UNKNOWN_STORAGE_SCHEME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 233;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to obtain the clear-text version of a password that is encoded with
   * what should be a reversible storage scheme.  This takes three arguments,
   * which are the DN of the user, the name of the storage scheme, and a message
   * explaining the problem.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_CLEAR_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 234;
 
 
 
  /**
   * The message ID for the message that will be used the provided DIGEST-MD5
   * credentials are invalid for the associated user account.  This does not
   * take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_CREDENTIALS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 235;
 
 
 
  /**
   * The message ID for the message that will be used if SASL DIGEST-MD5
   * authentication fails because the user entry does not have any passwords
   * stored in a reversible form.  This takes a single argument, which is the
   * DN of the user.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_REVERSIBLE_PASSWORDS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 236;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to generate the DIGEST-MD5 response on the server to compare with
   * the value provided by the client.  This takes a single argument, which is a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GENERATE_RESPONSE_DIGEST =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 237;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to generate the DIGEST-MD5 response auth digest.  This takes a
   * single argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int
       MSGID_SASLDIGESTMD5_CANNOT_GENERATE_RESPONSE_AUTH_DIGEST =
            CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 238;
 
 
 
  /**
   * The message ID for the message that will be used if the client credentials
   * include a quoted token value in which the closing quote is not followed by
   * either a comma or the end of the credentials string.  This takes a single
   * argument, which is the position of the invalid quotation mark.
   */
  public static final int MSGID_SASLDIGESTMD5_INVALID_CLOSING_QUOTE_POS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 239;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * attribute for username lookups has been updated.  This takes two arguments,
   * which are the DN of the configuration entry and the new attribute type name
   * or OID.
   */
  public static final int MSGID_SASLDIGESTMD5_UPDATED_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 240;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the base
   * DN for username lookups has been updated.  This takes two arguments, which
   * are the DN of the configuration entry and the new base DN.
   */
  public static final int MSGID_SASLDIGESTMD5_UPDATED_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 241;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the realm
   * for DIGEST-MD5 authentication has been updated with a new value.  This
   * takes two arguments, which are the DN of the configuration entry and the
   * new realm.
   */
  public static final int MSGID_SASLDIGESTMD5_UPDATED_NEW_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 242;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the realm
   * for DIGEST-MD5 authentication has been updated to have no value.  This
   * takes a single argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_SASLDIGESTMD5_UPDATED_NO_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 243;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the username attribute used to locate entries
   * when authenticating via SASL GSSAPI.  This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_DESCRIPTION_USERNAME_ATTRIBUTE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 244;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the attribute to use for username lookups.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_GET_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 245;
 
 
 
  /**
   * The message ID for the message that will be used if the username attribute
   * is not defined in the server schema.  This takes two arguments, which are
   * the name of the username attribute and the DN of the configuration entry.
   */
  public static final int MSGID_SASLGSSAPI_UNKNOWN_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 246;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the user base DN used to locate entries when
   * authenticating via SASL GSSAPI.  This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_DESCRIPTION_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 247;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the base DN to use for username lookups.  This takes
   * two arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_GET_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 248;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the server FQDN used when authenticating via SASL
   * GSSAPI.  This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_DESCRIPTION_SERVER_FQDN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 249;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the server FQDN.  This takes two arguments, which are
   * the DN of the configuration entry and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_GET_SERVER_FQDN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 250;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * attribute for username lookups has been updated.  This takes two arguments,
   * which are the DN of the configuration entry and the new attribute type name
   * or OID.
   */
  public static final int MSGID_SASLGSSAPI_UPDATED_USERNAME_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 251;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the base
   * DN for username lookups has been updated.  This takes two arguments, which
   * are the DN of the configuration entry and the new base DN.
   */
  public static final int MSGID_SASLGSSAPI_UPDATED_USER_BASE_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 252;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * fully-qualified domain name of the server used for GSSAPI authentication
   * has been updated with a new value.  This takes two arguments, which are the
   * DN of the configuration entry and the new FQDN.
   */
  public static final int MSGID_SASLGSSAPI_UPDATED_NEW_SERVER_FQDN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 253;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the FQDN
   * for GSSAPI authentication has been updated to have no value.  This
   * takes a single argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_SASLGSSAPI_UPDATED_NO_SERVER_FQDN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 254;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that an
   * unexpected callback has been provided to the SASL server during GSSAPI
   * authentication.  This takes a single argument, which is a string
   * representation of the unexpected callback.
   */
  public static final int MSGID_SASLGSSAPI_UNEXPECTED_CALLBACK =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 255;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the address of the KDC to use when authenticating
   * via SASL GSSAPI.  This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_DESCRIPTION_KDC_ADDRESS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 256;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the address of the KDC.  This takes two arguments,
   * which are the DN of the configuration entry and a string representation of
   * the exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_GET_KDC_ADDRESS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 257;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the default realm to use when authenticating via
   * SASL GSSAPI.  This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_DESCRIPTION_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 258;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the default realm for GSSAPI authentication.  This
   * takes two arguments, which are the DN of the configuration entry and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_GET_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 259;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * process a GSSAPI bind request when no client connection is associated with
   * the bind request.  This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_NO_CLIENT_CONNECTION =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 260;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to create the SASL server instance to use when processing a
   * GSSAPI bind.  This takes a single argument, which is a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_CREATE_SASL_SERVER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 261;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to evaluate the client's GSSAPI challenge response.  This takes
   * a single argument, which is a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_EVALUATE_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 262;
 
 
 
  /**
   * The message ID for the message that will be used if the GSSAPI
   * authentication completes but there is no internal authorization ID that
   * can be used to map the authenticating user to a Directory Server user.
   * This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_NO_AUTHZ_ID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 263;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to perform an internal search to map the GSSAPI authorization ID
   * to a Directory Server user.  This takes three arguments, which are the
   * authorization ID, the result code, and the error message from the internal
   * search failure.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_PERFORM_INTERNAL_SEARCH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 264;
 
 
 
  /**
   * The message ID for the message that will be used if the GSSAPI
   * authorization ID appears to map to more than one user.  This takes a
   * single argument, which is the authorization ID.
   */
  public static final int MSGID_SASLGSSAPI_MULTIPLE_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 265;
 
 
 
  /**
   * The message ID for the message that will be used if the GSSAPI
   * authorization ID cannot be mapped to any users in the Directory Server.
   * This takes a single argument, which is the authorization ID.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_MAP_AUTHZID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 266;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the KDC
   * address used for GSSAPI authentication has been updated with a new value.
   * This takes two arguments, which are the DN of the configuration entry and
   * the new KDC address.
   */
  public static final int MSGID_SASLGSSAPI_UPDATED_KDC =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 267;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the KDC
   * address used for GSSAPI authentication has been unset as a system property
   * and therefore the underlying OS config will be used.  This takes a single
   * argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_SASLGSSAPI_UNSET_KDC =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 268;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * default realm for GSSAPI authentication has been updated with a new value.
   * This takes two arguments, which are the DN of the configuration entry and
   * the new realm.
   */
  public static final int MSGID_SASLGSSAPI_UPDATED_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 269;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * default realm used for GSSAPI authentication has been unset as a system
   * property and therefore the underlying OS config will be used.  This takes a
   * single argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_SASLGSSAPI_UNSET_REALM =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 270;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to create a JAAS login context for GSSAPI authentication.  This
   * takes a single argument, which is a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_CREATE_LOGIN_CONTEXT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 271;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to perform server-side authentication needed for processing a GSSAPI
   * bind request.  This takes a single argument, which is a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_AUTHENTICATE_SERVER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 272;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the path to the Kerberos keytab file.  This does
   * not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_DESCRIPTION_KEYTAB_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 273;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the path to the keytab file to use for GSSAPI
   * authentication.  This takes two arguments, which are the DN of the
   * configuration entry and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_GET_KEYTAB_FILE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 274;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to write a temporary JAAS configuration file for use when processing
   * GSSAPI authentication.  This takes a single argument, which is a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_CREATE_JAAS_CONFIG =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 275;
 
 
 
  /**
   * The message ID for the message that will be used if the GSSAPI
   * authorization ID is different from the authentication ID.  This takes
   * two arguments, which are the authentication ID and the authorization ID.
   */
  public static final int MSGID_SASLGSSAPI_DIFFERENT_AUTHID_AND_AUTHZID =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 276;
 
 
 
  /**
   * The message ID for the message that will be used if a "Who Am I?" request
   * is received but no client connection structure is available.  This does not
   * take any arguments.
   */
  public static final int MSGID_EXTOP_WHOAMI_NO_CLIENT_CONNECTION =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 277;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * soft reference entry cache lock timeout configuration attribute.  This does
   * not take any arguments.
   */
  public static final int MSGID_SOFTREFCACHE_DESCRIPTION_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 278;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the lock timeout to use for the soft reference entry
   * cache.  This takes three arguments, which are the DN of the configuration
   * entry, a string representation of the exception that was caught, and the
   * default lock timeout that will be used.
   */
  public static final int MSGID_SOFTREFCACHE_CANNOT_DETERMINE_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 279;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * soft reference entry cache include filters configuration attribute.  This
   * does not take any arguments.
   */
  public static final int MSGID_SOFTREFCACHE_DESCRIPTION_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 280;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode an include filter.  This takes three arguments, which are
   * the invalid filter string, the DN of the configuration entry, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_CANNOT_DECODE_INCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 281;
 
 
 
  /**
   * The message ID for the message that will be used if none of the include
   * filter strings can be parsed.  This takes a single argument, which is the
   * DN of the configuration entry.
   */
  public static final int MSGID_SOFTREFCACHE_CANNOT_DECODE_ANY_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 282;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the include filters to use for the soft reference entry
   * cache.  This takes two arguments, which are the DN of the configuration
   * entry and a string representation of the exception that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_CANNOT_DETERMINE_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 283;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * soft reference entry cache exclude filters configuration attribute.  This
   * does not take any arguments.
   */
  public static final int MSGID_SOFTREFCACHE_DESCRIPTION_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 284;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode an exclude filter.  This takes three arguments, which are
   * the invalid filter string, the DN of the configuration entry, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_CANNOT_DECODE_EXCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 285;
 
 
 
  /**
   * The message ID for the message that will be used if none of the exclude
   * filter strings can be parsed.  This takes a single argument, which is the
   * DN of the configuration entry.
   */
  public static final int MSGID_SOFTREFCACHE_CANNOT_DECODE_ANY_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_WARNING | 286;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the exclude filters to use for the soft reference entry
   * cache.  This takes two arguments, which are the DN of the configuration
   * entry and a string representation of the exception that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_CANNOT_DETERMINE_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 287;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid lock timeout.  This takes two arguments, which are the DN of the
   * configuration entry and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SOFTREFCACHE_INVALID_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 288;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid include filter.  This takes three arguments, which are the DN
   * of the configuration entry, the invalid filter string, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_INVALID_INCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 289;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid set of include filters.  This takes two arguments, which are the DN
   * of the configuration entry and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_INVALID_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 290;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid exclude filter.  This takes three arguments, which are the DN
   * of the configuration entry, the invalid filter string, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_INVALID_EXCLUDE_FILTER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 291;
 
 
 
  /**
   * The message ID for the message that will be used if the user requested an
   * invalid set of exclude filters.  This takes two arguments, which are the DN
   * of the configuration entry and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_SOFTREFCACHE_INVALID_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_SEVERE_ERROR | 292;
 
 
 
  /**
   * The message ID for the message that will be used if the cache lock timeout
   * has been updated.  This takes a single argument, which is the new lock
   * timeout.
   */
  public static final int MSGID_SOFTREFCACHE_UPDATED_LOCK_TIMEOUT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 293;
 
 
 
  /**
   * The message ID for the message that will be used if the cache include
   * filter set has been updated.  This does not take any arguments.
   */
  public static final int MSGID_SOFTREFCACHE_UPDATED_INCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 294;
 
 
 
  /**
   * The message ID for the message that will be used if the cache exclude
   * filter set has been updated.  This does not take any arguments.
   */
  public static final int MSGID_SOFTREFCACHE_UPDATED_EXCLUDE_FILTERS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 295;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute that specifies which attributes to use when
   * matching ID strings to users.  This does not take any arguments.
   */
  public static final int MSGID_EXACTMAP_DESCRIPTION_MATCH_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 298;
 
 
 
  /**
   * The message ID for the message that will be used if there were no values
   * provided for the match attribute.  This takes a single argument, which is
   * the DN of the configuration entry.
   */
  public static final int MSGID_EXACTMAP_NO_MATCH_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 299;
 
 
 
  /**
   * The message ID for the message that will be used if any of the match
   * attributes is not defined in the server schema.  This takes two arguments,
   * which are the DN of the configuration entry and the value of the provided
   * attribute.
   */
  public static final int MSGID_EXACTMAP_UNKNOWN_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 300;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to determine the set of match attributes.  This takes two
   * arguments, which are the DN of the configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_EXACTMAP_CANNOT_DETERMINE_MATCH_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 301;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * configuration attribute that specifies the search bases to use when
   * matching ID strings to users.  This does not take any arguments.
   */
  public static final int MSGID_EXACTMAP_DESCRIPTION_SEARCH_BASE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 302;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to determine the set of search bases.  This takes two arguments,
   * which are the DN of the configuration entry and a string representation of
   * the exception that was caught.
   */
  public static final int MSGID_EXACTMAP_CANNOT_DETERMINE_MATCH_BASE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 303;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the set
   * of match attributes has been updated.  This takes a single argument, which
   * is the DN of the configuration entry.
   */
  public static final int MSGID_EXACTMAP_UPDATED_MATCH_ATTRS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 304;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the set
   * of search bases has been updated.  This takes a single argument, which is
   * the DN of the configuration entry.
   */
  public static final int MSGID_EXACTMAP_UPDATED_MATCH_BASES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 305;
 
 
 
  /**
   * The message ID for the message that will be used if the search to map a
   * user returned multiple entries.  This takes a single argument, which is the
   * provided ID string.
   */
  public static final int MSGID_EXACTMAP_MULTIPLE_MATCHING_ENTRIES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 306;
 
 
 
  /**
   * The message ID for the message that will be used if the search to map a
   * user could not be processed efficiently.  This two arguments, which are the
   * provided ID string and the error message from the internal search.
   */
  public static final int MSGID_EXACTMAP_INEFFICIENT_SEARCH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 307;
 
 
 
  /**
   * The message ID for the message that will be used if the search to map a
   * user could failed for some reason.  This two arguments, which are the
   * provided ID string and the error message from the internal search.
   */
  public static final int MSGID_EXACTMAP_SEARCH_FAILED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 308;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the DN of the configuration entry that defines
   * the identity mapper to use in conjunction with the CRAM-MD5 SASL mechanism.
   * This does not take any arguments.
   */
  public static final int MSGID_SASLCRAMMD5_DESCRIPTION_IDENTITY_MAPPER_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 309;
 
 
 
  /**
   * The message ID for the message that will be used if the CRAM-MD5 handler
   * configuration entry does not have an attribute that specifies which
   * identity mapper should be used.  This takes a single argument, which is the
   * DN of the SASL CRAM-MD5 configuration entry.
   */
  public static final int MSGID_SASLCRAMMD5_NO_IDENTITY_MAPPER_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 310;
 
 
 
  /**
   * The message ID for the message that will be used if the identity mapper DN
   * specified in the CRAM-MD5 handler entry does not refer to an active
   * identity mapper.  This takes two arguments, which are the DN of the
   * specified identity mapper and the DN of the SASL CRAM-MD5 configuration
   * entry.
   */
  public static final int MSGID_SASLCRAMMD5_NO_SUCH_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 311;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine which identity mapper to use in conjunction with the
   * CRAM-MD5 SASL mechanism.  This takes two arguments, which are the DN of
   * the configuration entry and a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_GET_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 312;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to map the CRAM-MD5 username to a user entry.  This takes two
   * arguments, which are the provided username and a message that explains the
   * problem that occurred.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_MAP_USERNAME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 313;
 
 
 
  /**
   * The message ID for the message that will be used if the identity mapper for
   * the CRAM-MD5 SASL mechanism is updated.  This takes two arguments, which
   * are the DN of the configuration entry and the
   */
  public static final int MSGID_SASLCRAMMD5_UPDATED_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 314;
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the DN of the configuration entry that defines
   * the identity mapper to use in conjunction with the DIGEST-MD5 SASL
   * mechanism.  This does not take any arguments.
   */
  public static final int MSGID_SASLDIGESTMD5_DESCRIPTION_IDENTITY_MAPPER_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 315;
 
 
 
  /**
   * The message ID for the message that will be used if the DIGEST-MD5 handler
   * configuration entry does not have an attribute that specifies which
   * identity mapper should be used.  This takes a single argument, which is the
   * DN of the SASL DIGEST-MD5 configuration entry.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_IDENTITY_MAPPER_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 316;
 
 
 
  /**
   * The message ID for the message that will be used if the identity mapper DN
   * specified in the DIGEST-MD5 handler entry does not refer to an active
   * identity mapper.  This takes two arguments, which are the DN of the
   * specified identity mapper and the DN of the SASL DIGEST-MD5 configuration
   * entry.
   */
  public static final int MSGID_SASLDIGESTMD5_NO_SUCH_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 317;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine which identity mapper to use in conjunction with the
   * DIGEST-MD5 SASL mechanism.  This takes two arguments, which are the DN of
   * the configuration entry and a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 318;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to map the DIGEST-MD5 username to a user entry.  This takes two
   * arguments, which are the provided username and a message that explains the
   * problem that occurred.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_MAP_USERNAME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 319;
 
 
 
  /**
   * The message ID for the message that will be used if the identity mapper for
   * the DIGEST-MD5 SASL mechanism is updated.  This takes two arguments, which
   * are the DN of the configuration entry and the
   */
  public static final int MSGID_SASLDIGESTMD5_UPDATED_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 320;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the DN of the configuration entry that defines
   * the identity mapper to use in conjunction with the CRAM-MD5 SASL mechanism.
   * This does not take any arguments.
   */
  public static final int MSGID_SASLPLAIN_DESCRIPTION_IDENTITY_MAPPER_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 321;
 
 
 
  /**
   * The message ID for the message that will be used if the CRAM-MD5 handler
   * configuration entry does not have an attribute that specifies which
   * identity mapper should be used.  This takes a single argument, which is the
   * DN of the SASL CRAM-MD5 configuration entry.
   */
  public static final int MSGID_SASLPLAIN_NO_IDENTITY_MAPPER_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 322;
 
 
 
  /**
   * The message ID for the message that will be used if the identity mapper DN
   * specified in the CRAM-MD5 handler entry does not refer to an active
   * identity mapper.  This takes two arguments, which are the DN of the
   * specified identity mapper and the DN of the SASL CRAM-MD5 configuration
   * entry.
   */
  public static final int MSGID_SASLPLAIN_NO_SUCH_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 323;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine which identity mapper to use in conjunction with the
   * CRAM-MD5 SASL mechanism.  This takes two arguments, which are the DN of
   * the configuration entry and a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_GET_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 324;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to map the provided username to a user entry.  This takes two
   * arguments, which are the provided username and a message that explains the
   * problem that occurred.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_MAP_USERNAME =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 325;
 
 
 
  /**
   * The message ID for the message that will be used if the identity mapper for
   * the PLAIN SASL mechanism is updated.  This takes two arguments, which
   * are the DN of the configuration entry and the DN of the identity mapper
   * entry.
   */
  public static final int MSGID_SASLPLAIN_UPDATED_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 326;
 
 
 
  /**
   * The message ID for the message that will be used if a cancel request does
   * not contain a value.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_CANCEL_NO_REQUEST_VALUE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 327;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode a cancel request value.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int MSGID_EXTOP_CANCEL_CANNOT_DECODE_REQUEST_VALUE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 328;
 
 
 
  /**
   * The message ID for the message that will be used as the cancel reason for
   * the operation that is to be canceled.  This takes a single argument, which
   * is the message ID of the cancel request.
   */
  public static final int MSGID_EXTOP_CANCEL_REASON =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 329;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * use the authentication password syntax in conjunction with a storage scheme
   * that does not support that use.  This takes a single argument, which is the
   * name of the password storage scheme.
   */
  public static final int MSGID_PWSCHEME_DOES_NOT_SUPPORT_AUTH_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 330;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * minimum length configuration attribute.  It does not take any arguments.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_DESCRIPTION_MIN_LENGTH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 331;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to determine the minimum password length.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_CANNOT_DETERMINE_MIN_LENGTH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 332;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * maximum length configuration attribute.  It does not take any arguments.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_DESCRIPTION_MAX_LENGTH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 333;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to determine the maximum password length.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_CANNOT_DETERMINE_MAX_LENGTH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 334;
 
 
 
  /**
   * The message ID for the message that will be used if the minimum password
   * length is greater than the maximum.  This takes two arguments, which are
   * the minimum and maximum allowed password lengths.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_MIN_GREATER_THAN_MAX =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 335;
 
 
 
  /**
   * The message ID for the message that will be used if a provided password is
   * too short.  This takes a single argument, which is the minimum required
   * password length.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_TOO_SHORT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 336;
 
 
 
  /**
   * The message ID for the message that will be used if a provided password is
   * too short.  This takes a single argument, which is the maximum allowed
   * password length.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_TOO_LONG =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 337;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * minimum password length has been updated.  This takes a single argument,
   * which is the new minimum length.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_UPDATED_MIN_LENGTH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 338;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * maximum password length has been updated.  This takes a single argument,
   * which is the new maximum length.
   */
  public static final int MSGID_PWLENGTHVALIDATOR_UPDATED_MAX_LENGTH =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 339;
 
 
 
  /**
   * The message ID for the message that will be used as the description for
   * the character set definitions attribute.  This does not take any arguments.
   */
  public static final int MSGID_RANDOMPWGEN_DESCRIPTION_CHARSET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 340;
 
 
 
  /**
   * The message ID for the message that will be used if no character set
   * definitions are included.  This takes a single argument, which is the DN of
   * the configuration entry.
   */
  public static final int MSGID_RANDOMPWGEN_NO_CHARSETS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 341;
 
 
 
  /**
   * The message ID for the message that will be used if two or more character
   * sets have the same name.  This takes two arguments, which are the DN of the
   * entry and the conflicting character set name.
   */
  public static final int MSGID_RANDOMPWGEN_CHARSET_NAME_CONFLICT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 342;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to decode the character set definitions.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_RANDOMPWGEN_CANNOT_DETERMINE_CHARSETS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 343;
 
 
 
  /**
   * The message ID for the message that will be used as the description for
   * the character set format attribute.  This does not take any arguments.
   */
  public static final int MSGID_RANDOMPWGEN_DESCRIPTION_PWFORMAT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 344;
 
 
 
  /**
   * The message ID for the message that will be used if no password format is
   * provided.  This takes a single argument, which is the DN of the
   * configuration entry.
   */
  public static final int MSGID_RANDOMPWGEN_NO_PWFORMAT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 345;
 
 
 
  /**
   * The message ID for the message that will be used if the password format
   * references an unknown character set.  This takes two arguments, which are
   * the password format string and the name of the unrecognized character set.
   */
  public static final int MSGID_RANDOMPWGEN_UNKNOWN_CHARSET =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 346;
 
 
 
  /**
   * The message ID for the message that will be used if the password format
   * string does not have a valid syntax.  This takes a single argument, which
   * is the invalid format string.
   */
  public static final int MSGID_RANDOMPWGEN_INVALID_PWFORMAT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 347;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to obtain the password format string.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_RANDOMPWGEN_CANNOT_DETERMINE_PWFORMAT =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 348;
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * attribute used to specify the DN of the configuration entry that defines
   * the identity mapper to use in conjunction with the GSSAPI SASL mechanism.
   * This does not take any arguments.
   */
  public static final int MSGID_SASLGSSAPI_DESCRIPTION_IDENTITY_MAPPER_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 349;
 
 
 
  /**
   * The message ID for the message that will be used if the GSSAPI handler
   * configuration entry does not have an attribute that specifies which
   * identity mapper should be used.  This takes a single argument, which is the
   * DN of the SASL GSSAPI configuration entry.
   */
  public static final int MSGID_SASLGSSAPI_NO_IDENTITY_MAPPER_ATTR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 350;
 
 
 
  /**
   * The message ID for the message that will be used if the identity mapper DN
   * specified in the GSSAPI handler entry does not refer to an active identity
   * mapper.  This takes two arguments, which are the DN of the specified
   * identity mapper and the DN of the SASL GSSAPI configuration entry.
   */
  public static final int MSGID_SASLGSSAPI_NO_SUCH_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 351;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine which identity mapper to use in conjunction with the
   * DIGEST-MD5 SASL mechanism.  This takes two arguments, which are the DN of
   * the configuration entry and a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_SASLGSSAPI_CANNOT_GET_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 352;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * identity mapper used for GSSAPI authentication has been updated with a new
   * value.  This takes two arguments, which are the DN of the configuration
   * entry and the new identity mapper DN.
   */
  public static final int MSGID_SASLGSSAPI_UPDATED_IDENTITY_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 353;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to retrieve the password policy for the user.  This takes two
   * arguments, which are the user DN and a message explaining the problem that
   * occurred.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_GET_PW_POLICY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 354;
 
 
 
  /**
   * The message ID for the message that will be used if a user password change
   * is rejected because the current password was not provided.  This does not
   * take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_REQUIRE_CURRENT_PW =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 355;
 
 
 
  /**
   * The message ID for the message that will be used if a user password change
   * is rejected because the current password was provided over an insecure
   * communication channel.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_SECURE_AUTH_REQUIRED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 356;
 
 
 
  /**
   * The message ID for the message that will be used if a user password change
   * is rejected because users are not allowed to change their passwords.  This
   * does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_USER_PW_CHANGES_NOT_ALLOWED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 357;
 
 
 
  /**
   * The message ID for the message that will be used if a password change is
   * rejected because the new password was provided over an insecure
   * communication channel.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_SECURE_CHANGES_REQUIRED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 358;
 
 
 
  /**
   * The message ID for the message that will be used if a user password change
   * is rejected because the current password is too young.  This does not take
   * any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_IN_MIN_AGE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 359;
 
 
 
  /**
   * The message ID for the message that will be used if a user password change
   * is rejected because the current password is expired.  This does not take
   * any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_PASSWORD_IS_EXPIRED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 360;
 
 
 
  /**
   * The message ID for the message that will be used if a password change is
   * rejected because no new password was given and there is no password
   * generator defined.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_NO_PW_GENERATOR =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 361;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to use the password generator to create a new password.  This takes
   * a single argument, which is a message explaining the problem that occurred.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_GENERATE_PW =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 362;
 
 
 
  /**
   * The message ID for the message that will be used if a password change is
   * rejected because the new password provided was pre-encoded.  This does not
   * take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_PRE_ENCODED_NOT_ALLOWED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 363;
 
 
 
  /**
   * The message ID for the message that will be used if a password change is
   * rejected because the new password was rejected by a password validator.
   * This takes a single argument, which is a message explaining the rejection.
   */
  public static final int MSGID_EXTOP_PASSMOD_UNACCEPTABLE_PW =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 364;
 
 
 
  /**
   * The message ID for the message that will be used if a password change is
   * rejected because the new password could not be encoded using the default
   * schemes.  This takes a single argument, which is a message explaining the
   * problem that occurred.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_ENCODE_PASSWORD =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 365;
 
 
 
  /**
   * The message ID for the message that will be used as the description for the
   * identity mapper DN configuration attribute.  This does not take any
   * arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_DESCRIPTION_ID_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 366;
 
 
 
  /**
   * The message ID for the message that will be used if no identity mapper DN
   * is provided for the password modify extended operation.  This takes a
   * single argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_EXTOP_PASSMOD_NO_ID_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 367;
 
 
 
  /**
   * The message ID for the message that will be used if the specified identity
   * mapper does not exist or is not enabled.  This takes two arguments, which
   * are the DN of the identity mapper and the DN of the configuration entry.
   */
  public static final int MSGID_EXTOP_PASSMOD_NO_SUCH_ID_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 368;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the identity mapper.  This takes two arguments, which
   * are the DN of the configuration entry and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_DETERMINE_ID_MAPPER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 369;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to map a
   * user by an authorization ID string fails.  This takes a single argument,
   * which is the provided authorization ID string.
   */
  public static final int MSGID_EXTOP_PASSMOD_CANNOT_MAP_USER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 370;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to map a user by an authorization ID string.  This takes two
   * arguments, which are the provided authorization ID string and a message
   * explaining the problem that occurred.
   */
  public static final int MSGID_EXTOP_PASSMOD_ERROR_MAPPING_USER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 371;
 
 
 
  /**
   * The message ID for the message that will be used as the description for the
   * notification types configuration attribute.  This does not take any
   * arguments.
   */
  public static final int
       MSGID_ERRORLOG_ACCTNOTHANDLER_DESCRIPTION_NOTIFICATION_TYPES =
            CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_INFORMATIONAL | 372;
 
 
 
  /**
   * The message ID for the message that will be used if an invalid notification
   * type is specified.  This takes two arguments, which are the DN of the
   * configuration entry and the invalid notification type.
   */
  public static final int MSGID_ERRORLOG_ACCTNOTHANDLER_INVALID_TYPE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 373;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to determine the account status notification types.  This takes
   * two arguments, which are the DN of the configuration entry and a string
   * representation of the exception that occurred.
   */
  public static final int
       MSGID_ERRORLOG_ACCTNOTHANDLER_CANNOT_GET_NOTIFICATION_TYPES =
            CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 374;
 
 
 
  /**
   * The message ID for the message that will be written to the error log
   * whenever an account status notification is generated.  This takes four
   * arguments, which are the name of the account status notification type, the
   * user DN, the message ID, and the message string.
   */
  public static final int MSGID_ERRORLOG_ACCTNOTHANDLER_NOTIFICATION =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_NOTICE | 375;
 
 
 
  /**
   * The message ID for the message that will be used if SASL DIGEST-MD5
   * authentication fails because an error occured while trying to get the
   * clear-text password value(s) from a user's entry.
   */
  public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_REVERSIBLE_PASSWORDS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 376;
 
 
 
  /**
   * The message ID for the message that will be used if SASL CRAM-MD5
   * authentication fails because an error occured while trying to get the
   * clear-text password value(s) from a user's entry.
   */
  public static final int MSGID_SASLCRAMMD5_CANNOT_GET_REVERSIBLE_PASSWORDS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 377;
 
 
 
  /**
   * The message ID for the message that will be used if SASL PLAIN
   * authentication fails because an error occurred while trying to get the
   * password policy state.  This takes two arguments, which are the user DN and
   * a message explaining the problem that occurred.
   */
  public static final int MSGID_SASLPLAIN_CANNOT_CHECK_PASSWORD_VALIDITY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 378;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to send the clear-text StartTLS response after initiating TLS
   * negotiation.  This takes a single argument, which is a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_STARTTLS_ERROR_SENDING_CLEAR_RESPONSE =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 379;
 
 
 
  /**
   * The message ID for the message that will be used if a password change is
   * not actually performed because the request contained the LDAP no-op
   * control.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_NOOP =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_WARNING | 380;
 
 
 
  /**
   * The message ID for the message that will be used if the user's account is
   * disabled.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_ACCOUNT_DISABLED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 381;
 
 
 
  /**
   * The message ID for the message that will be used if the user's account is
   * locked.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_ACCOUNT_LOCKED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 382;
 
 
 
  /**
   * The message ID for the message that will be used if a user entry refered
   * in a static group does not exist.  This takes two arguments, which are the
   * DN of the target entry and the DN of the static group entry.
   */
  public static final int MSGID_STATICMEMBERS_NO_SUCH_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 383;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to retrieve an entry as a potential member of the static group.
   * This takes three arguments, which are the DN of the target entry, the DN of
   * the static group entry, and a message explaining the problem that occured.
   */
  public static final int MSGID_STATICMEMBERS_CANNOT_GET_ENTRY =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 384;
 
 
 
  /**
   * The message ID for the message that will be used if a potential static
   * group entry contains both the groupOfNames and groupOfUniqueNames object
   * classes.  This takes three arguments, which are the DN of the entry, the
   * name of the groupOfNames object class, and the name of the
   * groupOfUniqueNames object class.
   */
  public static final int MSGID_STATICGROUP_INVALID_OC_COMBINATION =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 385;
 
 
 
  /**
   * The message ID for the message that will be used if a potential static
   * group entry does not contain either the groupOfNames or groupOfUniqueNames
   * object class.  This takes three arguments, which are the DN of the entry,
   * the name of the groupOfNames object class, and the name of the
   * groupOfUniqueNames object class.
   */
  public static final int MSGID_STATICGROUP_NO_VALID_OC =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 386;
 
 
 
  /**
   * The message ID for the message that will be used if a value for the member
   * attribute for a static group cannot be parsed as a DN.  This takes four
   * arguments, which are the provided value, the name of the member attribute,
   * the DN of the entry, and the reason the value was not a valid DN.
   */
  public static final int MSGID_STATICGROUP_CANNOT_DECODE_MEMBER_VALUE_AS_DN =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 387;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a user to a static group that already includes that user.  This takes
   * two arguments, which is the DN of the user and the DN of the group.
   */
  public static final int MSGID_STATICGROUP_ADD_MEMBER_ALREADY_EXISTS =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 388;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a user from a static group that does not include that user.  This
   * takes two arguments, which is the DN of the user and the DN of the group.
   */
  public static final int MSGID_STATICGROUP_REMOVE_MEMBER_NO_SUCH_MEMBER =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 389;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to update a group entry to add a member.  This takes three
   * arguments, which are the member DN, the group DN, and a message explaining
   * the problem that occurred.
   */
  public static final int MSGID_STATICGROUP_ADD_MEMBER_UPDATE_FAILED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 390;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to update a group entry to remove a member.  This takes three
   * arguments, which are the member DN, the group DN, and a message explaining
   * the problem that occurred.
   */
  public static final int MSGID_STATICGROUP_REMOVE_MEMBER_UPDATE_FAILED =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 391;
 
 
 
  /**
   * The message ID for the message that will be used if a password modify
   * extended operation is requested to reset another user's password by a
   * client without sufficient privileges.  This does not take any arguments.
   */
  public static final int MSGID_EXTOP_PASSMOD_INSUFFICIENT_PRIVILEGES =
       CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 392;
 
 
 
  /**
   * Associates a set of generic messages with the message IDs defined in this
   * class.
   */
  public static void registerMessages()
  {
    registerMessage(MSGID_PWSCHEME_CANNOT_INITIALIZE_MESSAGE_DIGEST,
                    "An error occurred while attempting to initialize the " +
                    "message digest generator for the %s algorithm:  %s.");
    registerMessage(MSGID_PWSCHEME_CANNOT_BASE64_DECODE_STORED_PASSWORD,
                    "An error occurred while attempting to base64-decode " +
                    "the password value %s:  %s.");
    registerMessage(MSGID_PWSCHEME_DOES_NOT_SUPPORT_AUTH_PASSWORD,
                    "Password storage scheme %s does not support use with " +
                    "the authentication password attribute syntax.");
    registerMessage(MSGID_PWSCHEME_NOT_REVERSIBLE,
                    "The %s password storage scheme is not reversible, so it " +
                    "is impossible to recover the plaintext version of an " +
                    "encoded password.");
    registerMessage(MSGID_PWSCHEME_CANNOT_ENCODE_PASSWORD,
                    "An unexpected error occurred while attempting to encode " +
                    "a password using the storage scheme defined in class " +
                    "%s:  %s.");
 
 
    registerMessage(MSGID_JMX_ALERT_HANDLER_CANNOT_REGISTER,
                    "An error occurred while trying to register the JMX " +
                    "alert handler with the MBean server:  %s.");
 
 
    registerMessage(MSGID_FIFOCACHE_DESCRIPTION_MAX_MEMORY_PCT,
                    "Specifies the maximum percentage of available memory " +
                    "in the JVM that the entry cache should be allowed to " +
                    "consume.  Its value should be an integer between 1 and " +
                    "100.  Changes to this configuration attribute will take " +
                    "effect immediately, although if the value is reduced " +
                    "to a percentage that is less than the current " +
                    "consumption in the JVM, it may take some time for " +
                    "existing cache items to be purged.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DETERMINE_MAX_MEMORY_PCT,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_FIFOCACHE_MAX_MEMORY_PCT +
                    " attribute in configuration entry %s:  %s.  The default " +
                    "of %d will be used.");
    registerMessage(MSGID_FIFOCACHE_DESCRIPTION_MAX_ENTRIES,
                    "Specifies the maximum number of entries that may be " +
                    "held in the entry cache, with a value of zero " +
                    "indicating that there should be no limit to the number " +
                    "of entries (although the memory percentage will still " +
                    "be observed).  Changes to this configuration attribute " +
                    "will take effect immediately, although if it is reduced " +
                    "to a value that is less than the number of entries " +
                    "currently held in the cache, it may take some time for " +
                    "existing cache items to be purged.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DETERMINE_MAX_ENTRIES,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_FIFOCACHE_MAX_ENTRIES +
                    " attribute in configuration entry %s:  %s.  No hard " +
                    "limit on the number of entries will be enforced, but " +
                    "the value of " + ATTR_FIFOCACHE_MAX_MEMORY_PCT +
                    " will still be observed.");
    registerMessage(MSGID_FIFOCACHE_DESCRIPTION_LOCK_TIMEOUT,
                    "Specifies the maximum length of time in milliseconds " +
                    "that the entry cache should block while attempting " +
                    "to acquire a lock for an entry.  Changes to this " +
                    "configuration attribute will take effect immediately.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DETERMINE_LOCK_TIMEOUT,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_FIFOCACHE_LOCK_TIMEOUT +
                    " attribute in configuration entry %s:  %s.  The default " +
                    "of %d will be used.");
    registerMessage(MSGID_FIFOCACHE_DESCRIPTION_INCLUDE_FILTERS,
                    "Specifies a set of search filters that may be used to " +
                    "indicate which entries should be included in the entry " +
                    "cache.  Entries that do not match at least one of these " +
                    "filters will not be stored in the cache.  If no filters " +
                    "are provided, then any entry will be accepted.  Changes " +
                    "to this configuration attribute will take effect " +
                    "immediately, but will not impact existing entries that " +
                    "are already held in the cache.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DECODE_INCLUDE_FILTER,
                    "An error occurred while attempting to decode the value " +
                    "\"%s\" from attribute " + ATTR_FIFOCACHE_INCLUDE_FILTER +
                    " of entry %s:  %s.  This filter will not be used when " +
                    "determining whether to store an entry in the cache.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DECODE_ANY_INCLUDE_FILTERS,
                    "An error occurred while attempting to decode any of the " +
                    "values from attribute " + ATTR_FIFOCACHE_INCLUDE_FILTER +
                    " of entry %s.  All entries will be considered eligible " +
                    "for inclusion in the cache.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DETERMINE_INCLUDE_FILTERS,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_FIFOCACHE_INCLUDE_FILTER +
                    " attribute in configuration entry %s:  %s.  All entries " +
                    "will be considered eligible for inclusion in the cache.");
    registerMessage(MSGID_FIFOCACHE_DESCRIPTION_EXCLUDE_FILTERS,
                    "Specifies a set of search filters that may be used to " +
                    "indicate which entries should be excluded from the " +
                    "entry cache.  Entries that match any of these filters " +
                    "will not be stored in the cache.  If no filters are " +
                    "provided, then any entry will be accepted.  Changes to " +
                    "this configuration attribute will take effect " +
                    "immediately, but will not impact existing entries that " +
                    "are already held in the cache.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DECODE_EXCLUDE_FILTER,
                    "An error occurred while attempting to decode the value " +
                    "\"%s\" from attribute " + ATTR_FIFOCACHE_EXCLUDE_FILTER +
                    " of entry %s:  %s.  This filter will not be used when " +
                    "determining whether to store an entry in the cache.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DECODE_ANY_EXCLUDE_FILTERS,
                    "An error occurred while attempting to decode any of the " +
                    "values from attribute " + ATTR_FIFOCACHE_EXCLUDE_FILTER +
                    " of entry %s.  All entries will be considered eligible " +
                    "for inclusion in the cache.");
    registerMessage(MSGID_FIFOCACHE_CANNOT_DETERMINE_EXCLUDE_FILTERS,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_FIFOCACHE_EXCLUDE_FILTER +
                    " attribute in configuration entry %s:  %s.  All entries " +
                    "will be considered eligible for inclusion in the cache.");
    registerMessage(MSGID_FIFOCACHE_INVALID_MAX_MEMORY_PCT,
                    "The " + ATTR_FIFOCACHE_MAX_MEMORY_PCT + " attribute of " +
                    "entry %s, which holds the maximum percentage of JVM " +
                    "memory available for use in the entry cache, has an " +
                    "invalid value:  %s.  Its value must be an integer " +
                    "between 1 and 100.");
    registerMessage(MSGID_FIFOCACHE_INVALID_MAX_ENTRIES,
                    "The " + ATTR_FIFOCACHE_MAX_ENTRIES + " attribute of " +
                    "entry %s, which specifies the maximum number of entries " +
                    "that may be held in the entry cache, has an invalid " +
                    "value:  %s.  Its value must be a positive integer, or " +
                    "zero to indicate that no limit should be enforced.");
    registerMessage(MSGID_FIFOCACHE_INVALID_LOCK_TIMEOUT,
                    "The " + ATTR_FIFOCACHE_LOCK_TIMEOUT + " attribute of " +
                    "entry %s, which specifies the maximum length of time in " +
                    "milliseconds that the cache should block while " +
                    "attempting to obtain a lock on an entry, has an invalid " +
                    "value:  %s.  Its value must be a positive integer, or " +
                    "zero to indicate that it should never block.");
    registerMessage(MSGID_FIFOCACHE_INVALID_INCLUDE_FILTER,
                    "The " + ATTR_FIFOCACHE_INCLUDE_FILTER + " attribute of " +
                    "entry %s, which specifies a set of search filters that " +
                    "may be used to control which entries are included in " +
                    "the cache, has an invalid value of \"%s\":  %s.");
    registerMessage(MSGID_FIFOCACHE_INVALID_INCLUDE_FILTERS,
                    "The " + ATTR_FIFOCACHE_INCLUDE_FILTER + " attribute of " +
                    "entry %s, which specifies a set of search filters that " +
                    "may be used to control which entries are included in " +
                    "the cache, has an invalid value:  %s.");
    registerMessage(MSGID_FIFOCACHE_INVALID_EXCLUDE_FILTER,
                    "The " + ATTR_FIFOCACHE_EXCLUDE_FILTER + " attribute of " +
                    "entry %s, which specifies a set of search filters that " +
                    "may be used to control which entries are excluded from " +
                    "the cache, has an invalid value of \"%s\":  %s.");
    registerMessage(MSGID_FIFOCACHE_INVALID_EXCLUDE_FILTERS,
                    "The " + ATTR_FIFOCACHE_EXCLUDE_FILTER + " attribute of " +
                    "entry %s, which specifies a set of search filters that " +
                    "may be used to control which entries are excluded from " +
                    "the cache, has an invalid value:  %s.");
    registerMessage(MSGID_FIFOCACHE_UPDATED_MAX_MEMORY_PCT,
                    "The amount of memory that may be used for the entry " +
                    "cache has been updated to %d percent of the total " +
                    "memory available to the JVM, or approximately %d " +
                    "bytes.  If this percentage has been reduced, it may " +
                    "take some time for entries to be purged so that the " +
                    "current cache memory consumption can reflect this new " +
                    "setting.");
    registerMessage(MSGID_FIFOCACHE_UPDATED_MAX_ENTRIES,
                    "The number of entries that may be held in the entry " +
                    "cache has been updated to %d.  If this value has been " +
                    "reduced, it may take some time for entries to be purged " +
                    "so that the cache can reflect this new setting.");
    registerMessage(MSGID_FIFOCACHE_UPDATED_LOCK_TIMEOUT,
                    "The lock timeout that will be used to determine the " +
                    "length of time that the cache should block while " +
                    "attempting to acquire a lock for an entry has been " +
                    "set to %d milliseconds.");
    registerMessage(MSGID_FIFOCACHE_UPDATED_INCLUDE_FILTERS,
                    "The set of search filters that will control which " +
                    "entries may be included in the cache has been updated.");
    registerMessage(MSGID_FIFOCACHE_UPDATED_EXCLUDE_FILTERS,
                    "The set of search filters that will control which " +
                    "entries should be be excluded from the cache has been " +
                    "updated.");
 
 
    registerMessage(MSGID_EXTOP_PASSMOD_DESCRIPTION_ID_MAPPER,
                    "Specifies the DN of the configuration entry for the " +
                    "identity mapper that should be used in conjunction with " +
                    "the password modify extended operation.  This will be " +
                    "used to identify a user based on an authorization ID " +
                    "in the 'u:' form.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_EXTOP_PASSMOD_NO_ID_MAPPER,
                    "No identity mapper DN was specified in the " +
                    ATTR_IDMAPPER_DN + " attribute of the password modify " +
                    "extended operation configuration entry %s.  This is a " +
                    "required attribute, and the password modify extended " +
                    "operation will not be enabled.");
    registerMessage(MSGID_EXTOP_PASSMOD_NO_SUCH_ID_MAPPER,
                    "The identity mapper with configuration entry DN %s as " +
                    "specified for use with the password modify extended " +
                    "operation defined in entry %s either does not exist or " +
                    "is not enabled.  The identity mapper is a required " +
                    "component, and the password modify extended operation " +
                    "will not be enabled.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_DETERMINE_ID_MAPPER,
                    "An error occurred while attempting to determine the " +
                    "identity mapper to use in conjunction with the password " +
                    "modify extended operation defined in configuration " +
                    "entry %s:  %s.  The password modify extended operation " +
                    "will not be enabled for use in the server.");
    registerMessage(MSGID_EXTOP_PASSMOD_ILLEGAL_REQUEST_ELEMENT_TYPE,
                    "The password modify extended request sequence included " +
                    "an ASN.1 element of an invalid type:  %s.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_DECODE_REQUEST,
                    "An unexpected error occurred while attempting to decode " +
                    "the password modify extended request sequence:  %s.");
    registerMessage(MSGID_EXTOP_PASSMOD_NO_AUTH_OR_USERID,
                    "The password modify extended request cannot be " +
                    "processed because it does not contain an authorization " +
                    "ID and the underlying connection is not authenticated.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_LOCK_USER_ENTRY,
                    "The password modify extended request cannot be " +
                    "processed because the server was unable to obtain a " +
                    "write lock on user entry %s after multiple attempts.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_DECODE_AUTHZ_DN,
                    "The password modify extended request cannot be " +
                    "processed because the server cannot decode \"%s\" as a " +
                    "valid DN for use in the authorization ID for the " +
                    "operation.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_MAP_USER,
                    "The provided authorization ID string \"%s\" could not " +
                    "be mapped to any user in the directory.");
    registerMessage(MSGID_EXTOP_PASSMOD_ERROR_MAPPING_USER,
                    "An error occurred while attempting to map authorization " +
                    "ID string \"%s\" to a user entry:  %s.");
    registerMessage(MSGID_EXTOP_PASSMOD_INVALID_AUTHZID_STRING,
                    "The password modify extended request cannot be " +
                    "processed because it contained an invalid authorization " +
                    "ID that did not start with either \"dn:\" or \"u:\".  " +
                    "The provided authorization ID string was \"%s\".");
    registerMessage(MSGID_EXTOP_PASSMOD_NO_USER_ENTRY_BY_AUTHZID,
                    "The password modify extended request cannot be " +
                    "processed because it was not possible to identify the " +
                    "user entry to update based on the authorization DN of " +
                    "\"%s\".");
    registerMessage(MSGID_EXTOP_PASSMOD_NO_DN_BY_AUTHZID,
                    "The password modify extended request cannot be " +
                    "processed because the provided authorization UID of " +
                    "\"%s\" did not match any entries in the directory.");
    registerMessage(MSGID_EXTOP_PASSMOD_MULTIPLE_ENTRIES_BY_AUTHZID,
                    "The password modify extended request cannot be " +
                    "processed because the provided authorization UID of " +
                    "\"%s\" matched more than one entry in the directory.");
    registerMessage(MSGID_EXTOP_PASSMOD_INVALID_OLD_PASSWORD,
                    "The password modify extended operation cannot be " +
                    "processed because the current password provided for the " +
                    "user is invalid.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_GET_PW_POLICY,
                    "An error occurred while attempting to get the " +
                    "password policy for user %s:  %s.");
    registerMessage(MSGID_EXTOP_PASSMOD_INSUFFICIENT_PRIVILEGES,
                    "You do not have sufficient privileges to perform " +
                    "password reset operations.");
    registerMessage(MSGID_EXTOP_PASSMOD_ACCOUNT_DISABLED,
                    "The user account has been administratively disabled.");
    registerMessage(MSGID_EXTOP_PASSMOD_ACCOUNT_LOCKED,
                    "The user account is locked.");
    registerMessage(MSGID_EXTOP_PASSMOD_REQUIRE_CURRENT_PW,
                    "The current password must be provided for self password " +
                    "changes.");
    registerMessage(MSGID_EXTOP_PASSMOD_SECURE_AUTH_REQUIRED,
                    "Password modify operations that supply the user's " +
                    "current password must be performed over a secure " +
                    "communication channel.");
    registerMessage(MSGID_EXTOP_PASSMOD_USER_PW_CHANGES_NOT_ALLOWED,
                    "End users are not allowed to change their passwords.");
    registerMessage(MSGID_EXTOP_PASSMOD_SECURE_CHANGES_REQUIRED,
                    "Password changes must be performed over a secure " +
                    "communication channel.");
    registerMessage(MSGID_EXTOP_PASSMOD_IN_MIN_AGE,
                    "The password cannot be changed because the previous " +
                    "password change was too recent.");
    registerMessage(MSGID_EXTOP_PASSMOD_PASSWORD_IS_EXPIRED,
                    "The password cannot be changed because it is expired.");
    registerMessage(MSGID_EXTOP_PASSMOD_NO_PW_GENERATOR,
                    "No new password was provided, and no password generator " +
                    "has been defined that may be used to automatically " +
                    "create a new password.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_GENERATE_PW,
                    "An error occurred while attempting to create a new " +
                    "password using the password generator:  %s.");
    registerMessage(MSGID_EXTOP_PASSMOD_PRE_ENCODED_NOT_ALLOWED,
                    "The password policy does not allow users to supply " +
                    "pre-encoded passwords.");
    registerMessage(MSGID_EXTOP_PASSMOD_UNACCEPTABLE_PW,
                    "The provided new password failed the validation checks " +
                    "defined in the server:  %s.");
    registerMessage(MSGID_EXTOP_PASSMOD_CANNOT_ENCODE_PASSWORD,
                    "Unable to encode the provided password using the " +
                    "default scheme(s):  %s.");
    registerMessage(MSGID_EXTOP_PASSMOD_NOOP,
                    "The password modify operation was not actually " +
                    "performed in the Directory Server because the LDAP " +
                    "no-op control was present in the request.");
 
 
    registerMessage(MSGID_NULL_KEYMANAGER_NO_MANAGER,
                    "The Directory Server is unable to process an operation " +
                    "which requires access to an SSL key manager because no " +
                    "valid key manager has been defined in entry " +
                    DN_KEYMANAGER_PROVIDER_CONFIG +
                    " of the server configuration.");
 
 
    registerMessage(MSGID_FILE_KEYMANAGER_DESCRIPTION_FILE,
                    "Specifies the path to the file containing the Directory " +
                    "Server keystore information.  Changes to this " +
                    "configuration attribute will take effect the next time " +
                    "that the key manager is accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_NO_FILE_ATTR,
                    "The configuration entry %s that defines a file-based " +
                    "key manager does not contain attribute " +
                    ATTR_KEYSTORE_FILE + " that should hold the path to the " +
                    "keystore file.");
    registerMessage(MSGID_FILE_KEYMANAGER_NO_SUCH_FILE,
                    "The keystore file %s specified in attribute " +
                    ATTR_KEYSTORE_FILE + " of configuration entry %s does " +
                    " not exist.");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_FILE,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_FILE + " in configuration entry %s:  %s.");
    registerMessage(MSGID_FILE_KEYMANAGER_DESCRIPTION_TYPE,
                    "Specifies the keystore type for the Directory Server " +
                    "keystore.  Valid values should always include 'JKS' and " +
                    "'PKCS12', but different implementations may allow other " +
                    "values as well.  If no value is provided, then the " +
                    "JVM-default value will be used.  Changes to this " +
                    "configuration attribute will take effect the next time " +
                    "that the key manager is accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_INVALID_TYPE,
                    "The keystore type %s specified in attribute " +
                    ATTR_KEYSTORE_TYPE + " of configuration entry %s is not " +
                    "valid:  %s.");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_TYPE,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_TYPE + " in configuration entry %s:  %s.");
    registerMessage(MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_PROPERTY,
                    "Specifies the name of the Java property that contains " +
                    "the clear-text PIN needed to access the file-based " +
                    "key manager.  Changes to this configuration attribute " +
                    "will take effect the next time that the key manager is " +
                    "accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_PIN_PROPERTY_NOT_SET,
                    "Java property %s which is specified in attribute " +
                    ATTR_KEYSTORE_PIN_PROPERTY + " of configuration entry %s " +
                    "should contain the PIN needed to access the file-based " +
                    "key manager, but this property is not set.");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_PROPERTY,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN_PROPERTY + " in configuration entry " +
                    "%s:  %s.");
    registerMessage(MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_ENVAR,
                    "Specifies the name of the environment variable that " +
                    "contains the clear-text PIN needed to access the " +
                    "file-based key manager.  Changes to this configuration " +
                    "attribute will take effect the next time that the " +
                    "key manager is accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_PIN_ENVAR_NOT_SET,
                    "Environment variable %s which is specified in attribute " +
                    ATTR_KEYSTORE_PIN_ENVAR + " of configuration entry %s " +
                    "should contain the PIN needed to access the file-based " +
                    "key manager, but this property is not set.");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_ENVAR,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN_ENVAR + " in configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_FILE,
                    "Specifies the path to the text file whose only contents " +
                    "should be a single line containing the clear-text PIN " +
                    "needed to access the file-based key manager.  Changes " +
                    "to this configuration attribute will take effect the " +
                    "next time that the key manager is accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_PIN_NO_SUCH_FILE,
                    "File %s specified in attribute " + ATTR_KEYSTORE_PIN_FILE +
                    " of configuration entry %s should contain the PIN " +
                    "needed to access the file-based key manager, but this " +
                    "file does not exist.");
    registerMessage(MSGID_FILE_KEYMANAGER_PIN_FILE_CANNOT_READ,
                    "An error occurred while trying to read the keystore PIN " +
                    "from file %s specified in configuration attribute " +
                    ATTR_KEYSTORE_PIN_FILE + " of configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_FILE_KEYMANAGER_PIN_FILE_EMPTY,
                    "File %s specified in attribute " + ATTR_KEYSTORE_PIN_FILE +
                    " of configuration entry %s should contain the PIN " +
                    "needed to access the file-based key manager, but this " +
                    "file is empty.");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_FILE,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN_FILE + " in configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_FILE_KEYMANAGER_DESCRIPTION_PIN_ATTR,
                    "Specifies the clear-text PIN needed to access the " +
                    "file-based key manager.  Changes to this configuration " +
                    "attribute will take effect the next time that the " +
                    "key manager is accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN + " in configuration entry %s:  %s.");
    registerMessage(MSGID_FILE_KEYMANAGER_NO_PIN,
                    "Configuration entry %s does not specify a means of " +
                    "determining the PIN needed to access the contents of " +
                    "the file-based key manager.  The PIN may be specified " +
                    "in a Java property (named by attribute " +
                    ATTR_KEYSTORE_PIN_PROPERTY + "), an environment " +
                    "variable (named by attribute " + ATTR_KEYSTORE_PIN_ENVAR +
                    "), a text file (named by attribute " +
                    ATTR_KEYSTORE_PIN_FILE + "), or directly in the entry " +
                    "using attribute " + ATTR_KEYSTORE_PIN + ".");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_LOAD,
                    "An error occurred while trying to load the keystore " +
                    "contents from file %s:  %s.");
    registerMessage(MSGID_FILE_KEYMANAGER_CANNOT_CREATE_FACTORY,
                    "An error occurred while trying to create a key manager " +
                    "factory to access the contents of keystore file %s:  %s.");
    registerMessage(MSGID_FILE_KEYMANAGER_UPDATED_FILE,
                    "The value of the " + ATTR_KEYSTORE_FILE +
                    " attribute in configuration entry %s has been updated " +
                    "to %s.  The new value will take effect the next time " +
                    "the key manager is accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_UPDATED_TYPE,
                    "The value of the " + ATTR_KEYSTORE_TYPE +
                    " attribute in configuration entry %s has been updated " +
                    "to %s.  The new value will take effect the next time " +
                    "the key manager is accessed.");
    registerMessage(MSGID_FILE_KEYMANAGER_UPDATED_PIN,
                    "The PIN to use to access the file-based key manager has " +
                    "been updated.  The new value will take effect the next " +
                    "time the key manager is accessed.");
 
 
    registerMessage(MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_PROPERTY,
                    "Specifies the name of the Java property that contains " +
                    "the clear-text PIN needed to access the PKCS#11 key " +
                    "manager.  Changes to this configuration attribute will " +
                    "take effect the next time that the key manager is " +
                    "accessed.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_PIN_PROPERTY_NOT_SET,
                    "Java property %s which is specified in attribute " +
                    ATTR_KEYSTORE_PIN_PROPERTY + " of configuration entry %s " +
                    "should contain the PIN needed to access the PKCS#11 key " +
                    "manager, but this property is not set.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_PROPERTY,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN_PROPERTY + " in configuration entry " +
                    "%s:  %s.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_ENVAR,
                    "Specifies the name of the environment variable that " +
                    "contains the clear-text PIN needed to access the " +
                    "PKCS#11 key manager.  Changes to this configuration " +
                    "attribute will take effect the next time that the key " +
                    "manager is accessed.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_PIN_ENVAR_NOT_SET,
                    "Environment variable %s which is specified in attribute " +
                    ATTR_KEYSTORE_PIN_ENVAR + " of configuration entry %s " +
                    "should contain the PIN needed to access the PKCS#11 " +
                    "key manager, but this property is not set.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_ENVAR,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN_ENVAR + " in configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_FILE,
                    "Specifies the path to the text file whose only contents " +
                    "should be a single line containing the clear-text PIN " +
                    "needed to access the PKCS#11 key manager.  Changes to " +
                    "this configuration attribute will take effect the next " +
                    "time that the key manager is accessed.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_PIN_NO_SUCH_FILE,
                    "File %s specified in attribute " + ATTR_KEYSTORE_PIN_FILE +
                    " of configuration entry %s should contain the PIN " +
                    "needed to access the PKCS#11 key manager, but this file " +
                    "does not exist.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_PIN_FILE_CANNOT_READ,
                    "An error occurred while trying to read the keystore PIN " +
                    "from file %s specified in configuration attribute " +
                    ATTR_KEYSTORE_PIN_FILE + " of configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_PIN_FILE_EMPTY,
                    "File %s specified in attribute " + ATTR_KEYSTORE_PIN_FILE +
                    " of configuration entry %s should contain the PIN " +
                    "needed to access the PKCS#11 key manager, but this file " +
                    "is empty.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_FILE,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN_FILE + " in configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_DESCRIPTION_PIN_ATTR,
                    "Specifies the clear-text PIN needed to access the " +
                    "PKCS#11 key manager.  Changes to this configuration " +
                    "attribute will take effect the next time that the key " +
                    "manager is accessed.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_KEYSTORE_PIN + " in configuration entry %s:  %s.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_NO_PIN,
                    "Configuration entry %s does not specify a means of " +
                    "determining the PIN needed to access the contents of " +
                    "the PKCS#11 key manager.  The PIN may be specified in a " +
                    "Java property (named by attribute " +
                    ATTR_KEYSTORE_PIN_PROPERTY + "), an environment " +
                    "variable (named by attribute " + ATTR_KEYSTORE_PIN_ENVAR +
                    "), a text file (named by attribute " +
                    ATTR_KEYSTORE_PIN_FILE + "), or directly in the entry " +
                    "using attribute " + ATTR_KEYSTORE_PIN + ".");
    registerMessage(MSGID_PKCS11_KEYMANAGER_CANNOT_LOAD,
                    "An error occurred while trying to access the PKCS#11 " +
                    "key manager:  %s.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_CANNOT_CREATE_FACTORY,
                    "An error occurred while trying to create a key manager " +
                    "factory to access the contents of the PKCS#11 " +
                    "keystore:  %s.");
    registerMessage(MSGID_PKCS11_KEYMANAGER_UPDATED_PIN,
                    "The PIN to use to access the PKCS#11 key manager has " +
                    "been updated.  The new value will take effect the next " +
                    "time the key manager is accessed.");
 
 
    registerMessage(MSGID_FILE_TRUSTMANAGER_DESCRIPTION_FILE,
                    "Specifies the path to the file containing the Directory " +
                    "Server trust store information.  Changes to this " +
                    "configuration attribute will take effect the next time " +
                    "that the trust manager is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_NO_FILE_ATTR,
                    "The configuration entry %s that defines a file-based " +
                    "trust manager does not contain attribute " +
                    ATTR_TRUSTSTORE_FILE + " that should hold the path to " +
                    "the trust store file.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_NO_SUCH_FILE,
                    "The trust store file %s specified in attribute " +
                    ATTR_TRUSTSTORE_FILE + " of configuration entry %s does " +
                    " not exist.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_FILE,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_TRUSTSTORE_FILE + " in configuration entry %s:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_DESCRIPTION_TYPE,
                    "Specifies the keystore type for the Directory Server " +
                    "trust store.  Valid values should always include 'JKS' " +
                    "and 'PKCS12', but different implementations may allow " +
                    "other values as well.  If no value is provided, then " +
                    "the JVM-default value will be used.  Changes to this " +
                    "configuration attribute will take effect the next time " +
                    "that the trust manager is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_INVALID_TYPE,
                    "The trust store type %s specified in attribute " +
                    ATTR_TRUSTSTORE_TYPE + " of configuration entry %s is " +
                    "not valid:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_TYPE,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_TRUSTSTORE_TYPE + " in configuration entry %s:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_PROPERTY,
                    "Specifies the name of the Java property that contains " +
                    "the clear-text PIN needed to access the file-based " +
                    "trust manager.  Changes to this configuration attribute " +
                    "will take effect the next time that the trust manager " +
                    "is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_PIN_PROPERTY_NOT_SET,
                    "Java property %s which is specified in attribute " +
                    ATTR_TRUSTSTORE_PIN_PROPERTY + " of configuration entry " +
                    "%s should contain the PIN needed to access the " +
                    "file-based trust manager, but this property is not set.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_PROPERTY,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_TRUSTSTORE_PIN_PROPERTY + " in configuration entry " +
                    "%s:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_ENVAR,
                    "Specifies the name of the environment variable that " +
                    "contains the clear-text PIN needed to access the " +
                    "file-based trust manager.  Changes to this " +
                    "configuration attribute will take effect the next time " +
                    "that the trust manager is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_PIN_ENVAR_NOT_SET,
                    "Environment variable %s which is specified in attribute " +
                    ATTR_TRUSTSTORE_PIN_ENVAR + " of configuration entry %s " +
                    "should contain the PIN needed to access the file-based " +
                    "trust manager, but this property is not set.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_ENVAR,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_TRUSTSTORE_PIN_ENVAR + " in configuration entry " +
                    "%s:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_FILE,
                    "Specifies the path to the text file whose only contents " +
                    "should be a single line containing the clear-text PIN " +
                    "needed to access the file-based trust manager.  Changes " +
                    "to this configuration attribute will take effect the " +
                    "next time that the trust manager is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_PIN_NO_SUCH_FILE,
                    "File %s specified in attribute " +
                    ATTR_TRUSTSTORE_PIN_FILE + " of configuration entry %s " +
                    "should contain the PIN needed to access the file-based " +
                    "trust manager, but this file does not exist.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_PIN_FILE_CANNOT_READ,
                    "An error occurred while trying to read the trust store " +
                    "PIN from file %s specified in configuration attribute " +
                    ATTR_TRUSTSTORE_PIN_FILE + " of configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_PIN_FILE_EMPTY,
                    "File %s specified in attribute " +
                    ATTR_TRUSTSTORE_PIN_FILE + " of configuration entry %s " +
                    "should contain the PIN needed to access the file-based " +
                    "trust manager, but this file is empty.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_FILE,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_TRUSTSTORE_PIN_FILE + " in configuration entry %s:  " +
                    "%s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_DESCRIPTION_PIN_ATTR,
                    "Specifies the clear-text PIN needed to access the " +
                    "file-based trust manager.  Changes to this " +
                    "configuration attribute will take effect the next time " +
                    "that the trust manager is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR,
                    "An unexpected error occurred while trying to determine " +
                    "the value of configuration attribute " +
                    ATTR_TRUSTSTORE_PIN + " in configuration entry %s:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_LOAD,
                    "An error occurred while trying to load the trust store " +
                    "contents from file %s:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_CANNOT_CREATE_FACTORY,
                    "An error occurred while trying to create a trust " +
                    "manager factory to access the contents of trust store " +
                    "file %s:  %s.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_UPDATED_FILE,
                    "The value of the " + ATTR_TRUSTSTORE_FILE +
                    " attribute in configuration entry %s has been updated " +
                    "to %s.  The new value will take effect the next time " +
                    "the trust manager is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_UPDATED_TYPE,
                    "The value of the " + ATTR_TRUSTSTORE_TYPE +
                    " attribute in configuration entry %s has been updated " +
                    "to %s.  The new value will take effect the next time " +
                    "the trust manager is accessed.");
    registerMessage(MSGID_FILE_TRUSTMANAGER_UPDATED_PIN,
                    "The PIN to use to access the file-based trust manager " +
                    "has been updated.  The new value will take effect the " +
                    "next time the trust manager is accessed.");
 
 
    registerMessage(MSGID_NULL_SECURITY_PROVIDER_READ_ERROR,
                    "An unexpected error occurred while attempting to read " +
                    "data from the client using the null connection security " +
                    "provider:  %s.");
    registerMessage(MSGID_NULL_SECURITY_PROVIDER_WRITE_ERROR,
                    "An unexpected error occurred while attempting to write " +
                    "data to the client using the null connection security " +
                    "provider:  %s.");
 
 
    registerMessage(MSGID_TLS_SECURITY_PROVIDER_CANNOT_INITIALIZE,
                    "An error occurred while attempting to initialize the " +
                    "SSL context for use in the TLS connection security " +
                    "provider:  %s.");
    registerMessage(MSGID_TLS_SECURITY_PROVIDER_UNEXPECTED_UNWRAP_STATUS,
                    "An unexpected status result was returned to the TLS " +
                    "connection security provider when attempting to unwrap " +
                    "encrypted data read from the client:  %s.");
    registerMessage(MSGID_TLS_SECURITY_PROVIDER_READ_ERROR,
                    "An unexpected error occurred while attempting to read " +
                    "data from the client using the TLS connection security " +
                    "provider:  %s.");
    registerMessage(MSGID_TLS_SECURITY_PROVIDER_WRITE_NEEDS_UNWRAP,
                    "An attempt was made to write data to a client through " +
                    "the TLS connection security provider, but the SSL " +
                    "indicated that it was necessary to read data from the " +
                    "client in order to perform the SSL negotiation, but no " +
                    "data was available for reading.  This is an unexpected " +
                    "condition, and it is not possible to continue " +
                    "processing on this client connection without the " +
                    "potential for blocking other client connections, so " +
                    "connection will be closed.");
    registerMessage(MSGID_TLS_SECURITY_PROVIDER_UNEXPECTED_WRAP_STATUS,
                    "An unexpected status result was returned to the TLS " +
                    "connection security provider when attempting to wrap " +
                    "clear-text data for writing to the client:  %s.");
    registerMessage(MSGID_TLS_SECURITY_PROVIDER_WRITE_ERROR,
                    "An unexpected error occurred while attempting to write " +
                    "data to the client using the TLS connection security " +
                    "provider:  %s.");
 
 
    registerMessage(MSGID_SEDCM_NO_PEER_CERTIFICATE,
                    "Could not map the provided certificate chain to a user " +
                    "entry because no peer certificate was available.");
    registerMessage(MSGID_SEDCM_PEER_CERT_NOT_X509,
                    "Could not map the provided certificate chain to a user " +
                    "because the peer certificate was not an X.509 " +
                    "certificate (peer certificate format was %s).");
    registerMessage(MSGID_SEDCM_CANNOT_DECODE_SUBJECT_AS_DN,
                    "Could not map the provided certificate chain to a user " +
                    "because the peer certificate subject \"%s\" could not " +
                    "be decoded as an LDAP DN:  %s.");
    registerMessage(MSGID_SEDCM_CANNOT_GET_ENTRY,
                    "Could not map the provided certificate chain to a user " +
                    "because an error occurred while attempting to retrieve " +
                    "the user entry with DN \"%s\":  %s.");
    registerMessage(MSGID_SEDCM_NO_USER_FOR_DN,
                    "Could not map the provided certificate chain to a user " +
                    "because no user entry exists with a DN of %s.");
    registerMessage(MSGID_SEDCM_CANNOT_LOCK_ENTRY,
                    "The Directory Server was unable to obtain a read lock " +
                    "on user entry %s in order to retrieve that entry.");
 
 
 
    registerMessage(MSGID_SASLEXTERNAL_NO_CLIENT_CONNECTION,
                    "The SASL EXTERNAL bind request could not be processed " +
                    "because the associated bind request does not have a " +
                    "reference to the client connection.");
    registerMessage(MSGID_SASLEXTERNAL_NO_SECURITY_PROVIDER,
                    "The SASL EXTERNAL bind request could not be processed " +
                    "because the associated client connection does not " +
                    "have a security provider.");
    registerMessage(MSGID_SASLEXTERNAL_CLIENT_NOT_USING_TLS_PROVIDER,
                    "The SASL EXTERNAL bind request could not be processed " +
                    "because the client connection is not using the TLS " +
                    "security provider (client security provider is %s).  " +
                    "The TLS security provider is required for clients that " +
                    "wish to use SASL EXTERNAL authentication.");
    registerMessage(MSGID_SASLEXTERNAL_NO_CLIENT_CERT,
                    "The SASL EXTERNAL bind request could not be processed " +
                    "because the client did not present an certificate chain " +
                    "during SSL/TLS negotiation.");
    registerMessage(MSGID_SASLEXTERNAL_NO_MAPPING,
                    "The SASL EXTERNAL bind request failed because the " +
                    "certificate chain presented by the client during " +
                    "SSL/TLS negotiation could not be mapped to a user " +
                    "entry in the Directory Server.");
    registerMessage(MSGID_SASLEXTERNAL_DESCRIPTION_VALIDATION_POLICY,
                    "Indicates whether the SASL EXTERNAL mechanism handler " +
                    "should attempt to validate the peer certificate against " +
                    "a certificate in the corresponding user's entry.  The " +
                    "value must be one of \"true\" (which will always " +
                    "attempt to validate the certificate and will fail if " +
                    "no certificates are present), \"false\" (which will " +
                    "never attempt to validate the peer certificate), and " +
                    "\"ifpresent\" (which will validate the peer certificate " +
                    "if there are one or more certificates in the user's " +
                    "entry, but will not fail if there are no certificates " +
                    "in the entry.  Changes to this configuration attribute " +
                    "will take effect immediately.");
    registerMessage(MSGID_SASLEXTERNAL_INVALID_VALIDATION_VALUE,
                    "Configuration entry %s has an invalid value %s for " +
                    "attribute " + ATTR_CLIENT_CERT_VALIDATION_POLICY +
                    ".  The value must be one of \"always\", \"never\", or " +
                    "\"ifpresent\".");
    registerMessage(MSGID_SASLEXTERNAL_CANNOT_GET_VALIDATION_POLICY,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " +
                    ATTR_CLIENT_CERT_VALIDATION_POLICY +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLEXTERNAL_DESCRIPTION_CERTIFICATE_ATTRIBUTE,
                    "Specifies the name of the attribute that will be used " +
                    "to hold the certificate information in user entries " +
                    "for the purpose of validation.  This must specify the " +
                    "name of a valid attribute type defined in the server " +
                    "schema.  Changes to this configuration attribute will " +
                    "take effect immediately.");
    registerMessage(MSGID_SASLEXTERNAL_CANNOT_GET_CERT_ATTR,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " +
                    ATTR_VALIDATION_CERT_ATTRIBUTE +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLEXTERNAL_UNKNOWN_CERT_ATTR,
                    "The attribute %s referenced in configuration attribute " +
                    ATTR_VALIDATION_CERT_ATTRIBUTE +
                    " in configuration entry %s does not exist in the " +
                    "Directory Server schema.  The attribute that is to be " +
                    "used for certificate validation during SASL EXTERNAL " +
                    "authentication must be defined in the server schema.");
    registerMessage(MSGID_SASLEXTERNAL_NO_CERT_IN_ENTRY,
                    "Unable to authenticate via SASL EXTERNAL because the " +
                    "mapped user entry %s does not have any certificates " +
                    "with which to verify the presented peer certificate.");
    registerMessage(MSGID_SASLEXTERNAL_PEER_CERT_NOT_FOUND,
                    "Unable to authenticate via SASL EXTERNAL because the " +
                    "mapped user entry %s did not contain the peer " +
                    "certificate presented by the client.");
    registerMessage(MSGID_SASLEXTERNAL_CANNOT_VALIDATE_CERT,
                    "An error occurred while attempting to validate the peer " +
                    "certificate presented by the client with a certificate " +
                    "from the user's entry %s:  %s.");
    registerMessage(MSGID_SASLEXTERNAL_UPDATED_VALIDATION_POLICY,
                    "Attribute " + ATTR_CLIENT_CERT_VALIDATION_POLICY +
                    " in configuration entry %s has been updated.  The new " +
                    "client certificate validation policy is %s.");
    registerMessage(MSGID_SASLEXTERNAL_UPDATED_CERT_ATTR,
                    "Attribute " + ATTR_VALIDATION_CERT_ATTRIBUTE +
                    " in configuration entry %s has been updated.  The %s " +
                    "attribute will now be used when validating peer " +
                    "certificates.");
 
 
    registerMessage(MSGID_STARTTLS_NO_CLIENT_CONNECTION,
                    "StartTLS cannot be used on this connection because the " +
                    "underlying client connection is not available.");
    registerMessage(MSGID_STARTTLS_NOT_TLS_CAPABLE,
                    "StartTLS cannot be used on this client connection " +
                    "because this connection type is not capable of using " +
                    "StartTLS to protect its communication.");
    registerMessage(MSGID_STARTTLS_ERROR_ON_ENABLE,
                    "An unexpected error occurred while attempting to enable " +
                    "the TLS connection security manager on the client " +
                    "connection for the purpose of StartTLS:  %s.");
    registerMessage(MSGID_STARTTLS_ERROR_SENDING_CLEAR_RESPONSE,
                    "An unexpected error occurred while attempting to " +
                    "send the clear-text response to the client after " +
                    "starting TLS negotiation:  %s.");
 
 
 
    registerMessage(MSGID_SASLPLAIN_DESCRIPTION_IDENTITY_MAPPER_DN,
                    "Specifies the DN of the configuration entry that holds " +
                    "the configuration for the identity mapper that should " +
                    "be used to map the provided username to a Directory " +
                    "Server user entry.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLPLAIN_NO_IDENTITY_MAPPER_ATTR,
                    "Configuration entry %s does not contain attribute " +
                    ATTR_IDMAPPER_DN + " which specifies the DN of the " +
                    "identity mapper to use in conjunction with the PLAIN " +
                    "SASL mechanism.  This is a required attribute.");
    registerMessage(MSGID_SASLPLAIN_NO_SUCH_IDENTITY_MAPPER,
                    "The identity mapper %s specified in attribute " +
                    ATTR_IDMAPPER_DN + " of configuration entry %s does not " +
                    "reference a valid identity mapper configuration that is " +
                    "enabled for use in the Directory Server.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_GET_IDENTITY_MAPPER,
                    "An error occurred while trying to process the value " +
                    "of the " + ATTR_IDMAPPER_DN + " attribute in " +
                    "configuration entry %s to determine which identity " +
                    "mapper should be used in conjunction with the PLAIN " +
                    "SASL mechanism:  %s.");
    registerMessage(MSGID_SASLPLAIN_DESCRIPTION_USERNAME_ATTRIBUTE,
                    "Specifies the name of the attribute that will be used " +
                    "to identify user entries based on the authcID/authzID " +
                    "provided during SASL PLAIN authentication.  This must " +
                    "specify the name of a valid attribute type defined in " +
                    "the server schema.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_GET_USERNAME_ATTR,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USERNAME_ATTRIBUTE +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLPLAIN_UNKNOWN_USERNAME_ATTR,
                    "The attribute %s referenced in configuration attribute " +
                    ATTR_USERNAME_ATTRIBUTE + " in configuration entry %s " +
                    "does not exist in the Directory Server schema.  The " +
                    "attribute that is to be used for username lookups " +
                    "during SASL PLAIN authentication must be defined in the " +
                    "server schema.");
    registerMessage(MSGID_SASLPLAIN_DESCRIPTION_USER_BASE_DN,
                    "Specifies the base DN that should be used when " +
                    "searching for entries based on the authcID/authzID " +
                    "provided during SASL PLAIN authentication.  Changes to " +
                    "this configuration attribute will take effect " +
                    "immediately.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_GET_USER_BASE_DN,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USER_BASE_DN +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLPLAIN_NO_SASL_CREDENTIALS,
                    "SASL PLAIN authentication requires that SASL " +
                    "credentials be provided but none were included in the " +
                    "bind request.");
    registerMessage(MSGID_SASLPLAIN_NO_NULLS_IN_CREDENTIALS,
                    "The SASL PLAIN bind request did not include any NULL " +
                    "characters.  NULL characters are required as delimiters " +
                    "between the authorization ID and authentication ID, and " +
                    "also between the authentication ID and the password.");
    registerMessage(MSGID_SASLPLAIN_NO_SECOND_NULL,
                    "The SASL PLAIN bind request did not include a second " +
                    "NULL character in the credentials, which is required as " +
                    "a delimiter between the authentication ID and the " +
                    "password.");
    registerMessage(MSGID_SASLPLAIN_ZERO_LENGTH_AUTHCID,
                    "The authentication ID contained in the SASL PLAIN bind " +
                    "request had a length of zero characters, which is not " +
                    "allowed.  SASL PLAIN authentication does not allow an " +
                    "empty string for use as the authentication ID.");
    registerMessage(MSGID_SASLPLAIN_ZERO_LENGTH_PASSWORD,
                    "The password contained in the SASL PLAIN bind request " +
                    "had a length of zero characters, which is not allowed.  " +
                    "SASL PLAIN authentication does not allow an empty " +
                    "string for use as the password.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_DECODE_AUTHCID_AS_DN,
                    "An error occurred while attempting to decode the SASL " +
                    "PLAIN authentication ID \"%s\" because it appeared to " +
                    "contain a DN but DN decoding failed:  %s.");
    registerMessage(MSGID_SASLPLAIN_AUTHCID_IS_NULL_DN,
                    "The authentication ID in the SASL PLAIN bind request " +
                    "appears to be an empty DN.  This is not allowed.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_GET_ENTRY_BY_DN,
                    "An error occurred while attempting to retrieve user " +
                    "entry %s as specified in the DN-based authentication ID " +
                    "of a SASL PLAIN bind request:  %s.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_MAP_USERNAME,
                    "An error occurred while attempting to map username %s " +
                    "to a Directory Server entry:  %s.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_PERFORM_INTERNAL_SEARCH,
                    "An error occurred while trying to perform an internal " +
                    "search to retrieve the user entry associated with the " +
                    "SASL PLAIN authentication ID %s.  The result of that " +
                    "search was %s with a message of %s.");
    registerMessage(MSGID_SASLPLAIN_MULTIPLE_MATCHING_ENTRIES,
                    "The internal search attempting to resolve SASL PLAIN " +
                    "authentication ID %s matched multiple entries.  " +
                    "Authentication cannot succeed unless the authentication " +
                    "ID is mapped to exactly one user entry.");
    registerMessage(MSGID_SASLPLAIN_NO_MATCHING_ENTRIES,
                    "The server was not able to find any user entries for " +
                    "the provided authentication ID of %s.");
    registerMessage(MSGID_SASLPLAIN_NO_PW_ATTR,
                    "The SASL PLAIN authentication failed because the mapped " +
                    "user entry did not contain any values for the %s " +
                    "attribute.");
    registerMessage(MSGID_SASLPLAIN_UNKNOWN_STORAGE_SCHEME,
                    "A password in the target user entry %s could not be " +
                    "processed via SASL PLAIN because that password has an " +
                    "unknown storage scheme of %s.");
    registerMessage(MSGID_SASLPLAIN_INVALID_PASSWORD,
                    "The provided password is invalid.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_CHECK_PASSWORD_VALIDITY,
                    "An error occurred while attempting to verify the " +
                    "password for user %s during SASL PLAIN authentication:  " +
                    "%s.");
    registerMessage(MSGID_SASLPLAIN_UPDATED_IDENTITY_MAPPER,
                    "Attribute " + ATTR_IDMAPPER_DN +
                    " in configuration entry %s has been updated.  The " +
                    "identity mapper defined in configuration entry %s " +
                    "will now be used to map usernames to entries when " +
                    "processing SASL PLAIN bind requests.");
    registerMessage(MSGID_SASLPLAIN_UPDATED_USERNAME_ATTR,
                    "Attribute " + ATTR_USERNAME_ATTRIBUTE +
                    " in configuration entry %s has been updated.  The %s " +
                    "attribute will now be used when looking up user entries " +
                    "based on their authcID/authzID.");
    registerMessage(MSGID_SASLPLAIN_UPDATED_USER_BASE_DN,
                    "Attribute " + ATTR_USER_BASE_DN +
                    " in configuration entry %s has been updated.  The DN %s " +
                    "will now be used as the search base when looking up " +
                    "user entries based on their authcID/authzID.");
    registerMessage(MSGID_SASLPLAIN_CANNOT_LOCK_ENTRY,
                    "The Directory Server was unable to obtain a read lock " +
                    "on user entry %s in order to retrieve that entry.");
 
 
    registerMessage(MSGID_SASLANONYMOUS_TRACE,
                    "SASL ANONYMOUS bind operation (conn=%d, op=%d) provided " +
                    "trace information:  %s.");
 
 
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_GET_MESSAGE_DIGEST,
                    "An unexpected error occurred while attempting to obtain " +
                    "an MD5 digest engine for use by the CRAM-MD5 SASL " +
                    "handler:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_DESCRIPTION_IDENTITY_MAPPER_DN,
                    "Specifies the DN of the configuration entry that holds " +
                    "the configuration for the identity mapper that should " +
                    "be used to map the CRAM-MD5 username to a Directory " +
                    "Server user entry.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLCRAMMD5_NO_IDENTITY_MAPPER_ATTR,
                    "Configuration entry %s does not contain attribute " +
                    ATTR_IDMAPPER_DN + " which specifies the DN of the " +
                    "identity mapper to use in conjunction with the CRAM-MD5 " +
                    "SASL mechanism.  This is a required attribute.");
    registerMessage(MSGID_SASLCRAMMD5_NO_SUCH_IDENTITY_MAPPER,
                    "The identity mapper %s specified in attribute " +
                    ATTR_IDMAPPER_DN + " of configuration entry %s does not " +
                    "reference a valid identity mapper configuration that is " +
                    "enabled for use in the Directory Server.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_GET_IDENTITY_MAPPER,
                    "An error occurred while trying to process the value " +
                    "of the " + ATTR_IDMAPPER_DN + " attribute in " +
                    "configuration entry %s to determine which identity " +
                    "mapper should be used in conjunction with the CRAM-MD5 " +
                    "SASL mechanism:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_DESCRIPTION_USERNAME_ATTRIBUTE,
                    "Specifies the name of the attribute that will be used " +
                    "to identify user entries based on the username provided " +
                    "during SASL CRAM-MD5 authentication.  This must specify " +
                    "the name of a valid attribute type defined in the " +
                    "server schema.  Changes to this configuration attribute " +
                    "will take effect immediately.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_GET_USERNAME_ATTR,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USERNAME_ATTRIBUTE +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_UNKNOWN_USERNAME_ATTR,
                    "The attribute %s referenced in configuration attribute " +
                    ATTR_USERNAME_ATTRIBUTE + " in configuration entry %s " +
                    "does not exist in the Directory Server schema.  The " +
                    "attribute that is to be used for username lookups " +
                    "during SASL CRAM-MD5 authentication must be defined in " +
                    "the server schema.");
    registerMessage(MSGID_SASLCRAMMD5_DESCRIPTION_USER_BASE_DN,
                    "Specifies the base DN that should be used when " +
                    "searching for entries based on the username provided " +
                    "during SASL CRAM-MD5 authentication.  Changes to this " +
                    "configuration attribute will take effect immediately.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_GET_USER_BASE_DN,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USER_BASE_DN +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_NO_STORED_CHALLENGE,
                    "The SASL CRAM-MD5 bind request contained SASL " +
                    "credentials but there is no stored challenge for this " +
                    "client connection.  The first CRAM-MD5 bind request in " +
                    "the two-stage process must not contain client SASL " +
                    "credentials.");
    registerMessage(MSGID_SASLCRAMMD5_INVALID_STORED_CHALLENGE,
                    "The SASL CRAM-MD5 bind request contained SASL " +
                    "credentials, but the stored SASL state information for " +
                    "this client connection is not in an appropriate form " +
                    "for the challenge.");
    registerMessage(MSGID_SASLCRAMMD5_NO_SPACE_IN_CREDENTIALS,
                    "The SASL CRAM-MD5 bind request from the client included " +
                    "SASL credentials but there was no space to separate " +
                    "the username from the authentication digest.");
    registerMessage(MSGID_SASLCRAMMD5_INVALID_DIGEST_LENGTH,
                    "The SASL CRAM-MD5 bind request included SASL " +
                    "credentials, but the decoded digest string had an " +
                    "invalid length of %d bytes rather than the %d bytes " +
                    "expected for a hex representation of an MD5 digest.");
    registerMessage(MSGID_SASLCRAMMD5_INVALID_DIGEST_CONTENT,
                    "The SASL CRAM-MD5 bind request included SASL " +
                    "credentials, but the decoded digest was not comprised " +
                    "of only hexadecimal digits:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_DECODE_USERNAME_AS_DN,
                    "An error occurred while attempting to decode the SASL " +
                    "CRAM-MD5 username \"%s\" because it appeared to contain " +
                    "a DN but DN decoding failed:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_USERNAME_IS_NULL_DN,
                    "The username in the SASL CRAM-MD5 bind request appears " +
                    "to be an empty DN.  This is not allowed.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_LOCK_ENTRY,
                    "The Directory Server was unable to obtain a read lock " +
                    "on user entry %s in order to retrieve that entry.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_GET_ENTRY_BY_DN,
                    "An error occurred while attempting to retrieve user " +
                    "entry %s as specified in the DN-based username of a " +
                    "SASL CRAM-MD5 bind request:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_MAP_USERNAME,
                    "An error occurred while attempting to map username %s " +
                    "to a Directory Server entry:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_ZERO_LENGTH_USERNAME,
                    "The username contained in the SASL CRAM-MD5 bind " +
                    "request had a length of zero characters, which is not " +
                    "allowed.  CRAM-MD5 authentication does not allow an " +
                    "empty string for use as the username.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_PERFORM_INTERNAL_SEARCH,
                    "An error occurred while trying to perform an internal " +
                    "search to retrieve the user entry associated with the " +
                    "SASL CRAM-MD5 username %s.  The result of that " +
                    "search was %s with a message of %s.");
    registerMessage(MSGID_SASLCRAMMD5_MULTIPLE_MATCHING_ENTRIES,
                    "The internal search attempting to resolve SASL CRAM-MD5 " +
                    "username %s matched multiple entries.  Authentication " +
                    "cannot succeed unless the username is mapped to exactly " +
                    "one user entry.");
    registerMessage(MSGID_SASLCRAMMD5_NO_MATCHING_ENTRIES,
                    "The server was not able to find any user entries for " +
                    "the provided username of %s.");
    registerMessage(MSGID_SASLCRAMMD5_NO_PW_ATTR,
                    "The SASL CRAM-MD5 authentication failed because the " +
                    "mapped user entry did not contain any values for the %s " +
                    "attribute.");
    registerMessage(MSGID_SASLCRAMMD5_UNKNOWN_STORAGE_SCHEME,
                    "A password in the target user entry %s could not be " +
                    "processed via SASL CRAM-MD5 because that password has " +
                    "an unknown storage scheme of %s.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_GET_CLEAR_PASSWORD,
                    "An error occurred while attempting to obtain the " +
                    "clear-text password for user %s from the value with " +
                    "storage scheme %s:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_INVALID_PASSWORD,
                    "The provided password is invalid.");
    registerMessage(MSGID_SASLCRAMMD5_NO_REVERSIBLE_PASSWORDS,
                    "SASL CRAM-MD5 authentication is not possible for user " +
                    "%s because none of the passwords in the user entry are " +
                    "stored in a reversible form.");
    registerMessage(MSGID_SASLCRAMMD5_CANNOT_GET_REVERSIBLE_PASSWORDS,
                    "An error occurred while attempting to retrieve the " +
                    "clear-text password(s) for user %s in order to perform " +
                    "SASL CRAM-MD5 authentication:  %s.");
    registerMessage(MSGID_SASLCRAMMD5_UPDATED_IDENTITY_MAPPER,
                    "Attribute " + ATTR_IDMAPPER_DN +
                    " in configuration entry %s has been updated.  The " +
                    "identity mapper defined in configuration entry %s " +
                    "will now be used to map usernames to entries when " +
                    "processing SASL CRAM-MD5 bind requests.");
    registerMessage(MSGID_SASLCRAMMD5_UPDATED_USERNAME_ATTR,
                    "Attribute " + ATTR_USERNAME_ATTRIBUTE +
                    " in configuration entry %s has been updated.  The %s " +
                    "attribute will now be used when looking up user entries " +
                    "based on their username.");
    registerMessage(MSGID_SASLCRAMMD5_UPDATED_USER_BASE_DN,
                    "Attribute " + ATTR_USER_BASE_DN +
                    " in configuration entry %s has been updated.  The DN %s " +
                    "will now be used as the search base when looking up " +
                    "user entries based on their username.");
 
 
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_MESSAGE_DIGEST,
                    "An unexpected error occurred while attempting to obtain " +
                    "an MD5 digest engine for use by the DIGEST-MD5 SASL " +
                    "handler:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_DESCRIPTION_IDENTITY_MAPPER_DN,
                    "Specifies the DN of the configuration entry that holds " +
                    "the configuration for the identity mapper that should " +
                    "be used to map the DIGEST-MD5 username to a Directory " +
                    "Server user entry.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_IDENTITY_MAPPER_ATTR,
                    "Configuration entry %s does not contain attribute " +
                    ATTR_IDMAPPER_DN + " which specifies the DN of the " +
                    "identity mapper to use in conjunction with the " +
                    "DIGEST-MD5 SASL mechanism.  This is a required " +
                    "attribute.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_SUCH_IDENTITY_MAPPER,
                    "The identity mapper %s specified in attribute " +
                    ATTR_IDMAPPER_DN + " of configuration entry %s does not " +
                    "reference a valid identity mapper configuration that is " +
                    "enabled for use in the Directory Server.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_IDENTITY_MAPPER,
                    "An error occurred while trying to process the value " +
                    "of the " + ATTR_IDMAPPER_DN + " attribute in " +
                    "configuration entry %s to determine which identity " +
                    "mapper should be used in conjunction with the " +
                    "DIGEST-MD5 SASL mechanism:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_DESCRIPTION_USERNAME_ATTRIBUTE,
                    "Specifies the name of the attribute that will be used " +
                    "to identify user entries based on the username provided " +
                    "during SASL DIGEST-MD5 authentication.  This must " +
                    "specify the name of a valid attribute type defined in " +
                    "the server schema.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_USERNAME_ATTR,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USERNAME_ATTRIBUTE +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_UNKNOWN_USERNAME_ATTR,
                    "The attribute %s referenced in configuration attribute " +
                    ATTR_USERNAME_ATTRIBUTE + " in configuration entry %s " +
                    "does not exist in the Directory Server schema.  The " +
                    "attribute that is to be used for username lookups " +
                    "during SASL DIGEST-MD5 authentication must be defined " +
                    "in the server schema.");
    registerMessage(MSGID_SASLDIGESTMD5_DESCRIPTION_USER_BASE_DN,
                    "Specifies the base DN that should be used when " +
                    "searching for entries based on the username provided " +
                    "during SASL DIGEST-MD5 authentication.  Changes to this " +
                    "configuration attribute will take effect immediately.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_USER_BASE_DN,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USER_BASE_DN +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_DESCRIPTION_REALM,
                    "Specifies the realm that should be used by the server " +
                    "for DIGEST-MD5 authentication.  If this is not " +
                    "provided, then the server will default to using a set " +
                    "of realm names that correspond to the defined " +
                    "suffixes.  Changes to this configuration attribute will " +
                    "take effect immediately.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_REALM,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_DIGESTMD5_REALM +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_CHALLENGE_TOO_LONG,
                    "The initial DIGEST-MD5 must be less than 2048 bytes, " +
                    "but the generated challenge was %d bytes.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_STORED_STATE,
                    "The SASL DIGEST-MD5 bind request contained SASL " +
                    "credentials but there is no stored SASL state " +
                    "information for this client connection.  If this is " +
                    "an initial authentication, then the client must not " +
                    "provide any SASL credentials.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_STORED_STATE,
                    "The SASL DIGEST-MD5 bind request contained SASL " +
                    "credentials, but the stored SASL state information for " +
                    "this client connection is not in an appropriate form " +
                    "for the challenge.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_PARSE_ISO_CREDENTIALS,
                    "An error occurred while attempting to parse the " +
                    "DIGEST-MD5 credentials as a string using the %s " +
                    "character set:  %s.  The server will re-try using UTF-8.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_PARSE_UTF8_CREDENTIALS,
                    "An error occurred while attempting to parse the " +
                    "DIGEST-MD5 credentials as a string using the UTF-8 " +
                    "character set:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_TOKEN_IN_CREDENTIALS,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "contained an invalid token of \"%s\" starting at " +
                    "position %d.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_CHARSET,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "specified an invalid character set of %s.  Only a value " +
                    "of 'utf-8' is acceptable for this parameter.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_DECODE_REALM_AS_DN,
                    "An error occurred while attempting to parse the " +
                    "provided response realm \"%s\" as a DN:  %s");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_REALM,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "included an invalid realm of \"%s\".");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_NONCE,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "included a nonce that was different from the nonce " +
                    "supplied by the server.  This could indicate a replay " +
                    "attack or a chosen plaintext attack, and as a result " +
                    "the client connection will be terminated.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_DECODE_NONCE_COUNT,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "included a nonce count \"%s\" that could not be decoded " +
                    "as a hex-encoded integer.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_DECODE_STORED_NONCE_COUNT,
                    "An unexpected error occurred while attempting to decode " +
                    "the nonce count stored by the server for this client " +
                    "connection:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_NONCE_COUNT,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "included a nonce count that was different from the " +
                    "count expected by the server.  This could indicate a " +
                    "replay attack, and as a result the client connection " +
                    "will be terminated.");
    registerMessage(MSGID_SASLDIGESTMD5_INTEGRITY_NOT_SUPPORTED,
                    "The client requested the auth-int quality of protection " +
                    "but integrity protection is not currently supported by " +
                    "the Directory Server.");
    registerMessage(MSGID_SASLDIGESTMD5_CONFIDENTIALITY_NOT_SUPPORTED,
                    "The client requested the auth-conf quality of " +
                    "protection but confidentiality protection is not " +
                    "currently supported by the Directory Server.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_QOP,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "requested an invalid quality of protection mechanism of " +
                    "%s.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_PARSE_RESPONSE_DIGEST,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "included a digest that could not be decoded as a " +
                    "hex-encoded byte sequence:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_RESPONSE_TOKEN,
                    "The DIGEST-MD5 credentials provided by the client " +
                    "included an invalid token named \"%s\".");
    registerMessage(MSGID_SASLDIGESTMD5_NO_USERNAME_IN_RESPONSE,
                    "The DIGEST-MD5 credentials provided by the client did " +
                    "not contain the required \"username\" token.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_NONCE_IN_RESPONSE,
                    "The DIGEST-MD5 credentials provided by the client did " +
                    "not contain the required \"nonce\" token.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_CNONCE_IN_RESPONSE,
                    "The DIGEST-MD5 credentials provided by the client did " +
                    "not contain the required \"cnonce\" token.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_NONCE_COUNT_IN_RESPONSE,
                    "The DIGEST-MD5 credentials provided by the client did " +
                    "not contain the required \"nc\" token.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_DIGEST_URI_IN_RESPONSE,
                    "The DIGEST-MD5 credentials provided by the client did " +
                    "not contain the required \"digest-uri\" token.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_DIGEST_IN_RESPONSE,
                    "The DIGEST-MD5 credentials provided by the client did " +
                    "not contain the required \"response\" token.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_DECODE_USERNAME_AS_DN,
                    "An error occurred while attempting to decode the SASL " +
                    "DIGEST-MD5 username \"%s\" because it appeared to " +
                    "contain a DN but DN decoding failed:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_USERNAME_IS_NULL_DN,
                    "The username in the SASL DIGEST-MD5 bind request " +
                    "appears to be an empty DN.  This is not allowed.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_LOCK_ENTRY,
                    "The Directory Server was unable to obtain a read lock " +
                    "on user entry %s in order to retrieve that entry.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_ENTRY_BY_DN,
                    "An error occurred while attempting to retrieve user " +
                    "entry %s as specified in the DN-based username of a " +
                    "SASL DIGEST-MD5 bind request:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_ZERO_LENGTH_USERNAME,
                    "The username contained in the SASL DIGEST-MD5 bind " +
                    "request had a length of zero characters, which is not " +
                    "allowed.  DIGEST-MD5 authentication does not allow an " +
                    "empty string for use as the username.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_MAP_USERNAME,
                    "An error occurred while attempting to map username %s " +
                    "to a Directory Server entry:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_PERFORM_INTERNAL_SEARCH,
                    "An error occurred while trying to perform an internal " +
                    "search to retrieve the user entry associated with the " +
                    "SASL DIGEST-MD5 username %s.  The result of that " +
                    "search was %s with a message of %s.");
    registerMessage(MSGID_SASLDIGESTMD5_MULTIPLE_MATCHING_ENTRIES,
                    "The internal search attempting to resolve SASL " +
                    "DIGEST-MD5 username %s matched multiple entries.  " +
                    "Authentication cannot succeed unless the username is " +
                    "mapped to exactly one user entry.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_MATCHING_ENTRIES,
                    "The server was not able to find any user entries for " +
                    "the provided username of %s.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_PW_ATTR,
                    "The SASL DIGEST-MD5 authentication failed because the " +
                    "mapped user entry did not contain any values for the %s " +
                    "attribute.");
    registerMessage(MSGID_SASLDIGESTMD5_UNKNOWN_STORAGE_SCHEME,
                    "A password in the target user entry %s could not be " +
                    "processed via SASL DIGEST-MD5 because that password has " +
                    "an unknown storage scheme of %s.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_CLEAR_PASSWORD,
                    "An error occurred while attempting to obtain the " +
                    "clear-text password for user %s from the value with " +
                    "storage scheme %s:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_CREDENTIALS,
                    "The DIGEST-MD5 credentials provided by the client are " +
                    "not appropriate for any password in the associated user " +
                    "account.");
    registerMessage(MSGID_SASLDIGESTMD5_NO_REVERSIBLE_PASSWORDS,
                    "SASL DIGEST-MD5 authentication is not possible for user " +
                    "%s because none of the passwords in the user entry are " +
                    "stored in a reversible form.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GET_REVERSIBLE_PASSWORDS,
                    "An error occurred while attempting to retrieve the " +
                    "clear-text password(s) for user %s in order to perform " +
                    "SASL DIGEST-MD5 authentication:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GENERATE_RESPONSE_DIGEST,
                    "An error occurred while attempting to generate a " +
                    "server-side digest to compare with the client " +
                    "response:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_CANNOT_GENERATE_RESPONSE_AUTH_DIGEST,
                    "An error occurred while trying to generate the " +
                    "response auth digest to include in the server SASL " +
                    "credentials:  %s.");
    registerMessage(MSGID_SASLDIGESTMD5_INVALID_CLOSING_QUOTE_POS,
                    "The DIGEST-MD5 response challenge could not be parsed " +
                    "because it had an invalid quotation mark at position %d.");
    registerMessage(MSGID_SASLDIGESTMD5_UPDATED_IDENTITY_MAPPER,
                    "Attribute " + ATTR_IDMAPPER_DN +
                    " in configuration entry %s has been updated.  The " +
                    "identity mapper defined in configuration entry %s " +
                    "will now be used to map usernames to entries when " +
                    "processing SASL DIGEST-MD5 bind requests.");
    registerMessage(MSGID_SASLDIGESTMD5_UPDATED_USERNAME_ATTR,
                    "Attribute " + ATTR_USERNAME_ATTRIBUTE +
                    " in configuration entry %s has been updated.  The %s " +
                    "attribute will now be used when looking up user entries " +
                    "based on their username.");
    registerMessage(MSGID_SASLDIGESTMD5_UPDATED_USER_BASE_DN,
                    "Attribute " + ATTR_USER_BASE_DN +
                    " in configuration entry %s has been updated.  The DN %s " +
                    "will now be used as the search base when looking up " +
                    "user entries based on their username.");
    registerMessage(MSGID_SASLDIGESTMD5_UPDATED_NEW_REALM,
                    "Attribute " + ATTR_DIGESTMD5_REALM +
                    " in configuration entry %s has been updated.  The realm " +
                    "\"%s\" will now be advertised by the server in the " +
                    "challenge response.");
    registerMessage(MSGID_SASLDIGESTMD5_UPDATED_NO_REALM,
                    "Attribute " + ATTR_DIGESTMD5_REALM +
                    " in configuration entry %s has been updated.  The " +
                    "realm(s) advertised by the server in the challenge " +
                    "response will be the DNs of the server suffixes.");
 
 
    registerMessage(MSGID_SASLGSSAPI_DESCRIPTION_USERNAME_ATTRIBUTE,
                    "Specifies the name of the attribute that will be used " +
                    "to identify user entries based on the username provided " +
                    "during SASL GSSAPI authentication.  This must " +
                    "specify the name of a valid attribute type defined in " +
                    "the server schema.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_GET_USERNAME_ATTR,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USERNAME_ATTRIBUTE +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLGSSAPI_UNKNOWN_USERNAME_ATTR,
                    "The attribute %s referenced in configuration attribute " +
                    ATTR_USERNAME_ATTRIBUTE + " in configuration entry %s " +
                    "does not exist in the Directory Server schema.  The " +
                    "attribute that is to be used for username lookups " +
                    "during SASL GSSAPI authentication must be defined " +
                    "in the server schema.");
    registerMessage(MSGID_SASLGSSAPI_DESCRIPTION_USER_BASE_DN,
                    "Specifies the base DN that should be used when " +
                    "searching for entries based on the username provided " +
                    "during SASL GSSAPI authentication.  Changes to this " +
                    "configuration attribute will take effect immediately.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_GET_USER_BASE_DN,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_USER_BASE_DN +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLGSSAPI_DESCRIPTION_IDENTITY_MAPPER_DN,
                    "Specifies the DN of the configuration entry that holds " +
                    "the configuration for the identity mapper that should " +
                    "be used to map the GSSAPI principal to a Directory " +
                    "Server user entry.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLGSSAPI_NO_IDENTITY_MAPPER_ATTR,
                    "Configuration entry %s does not contain attribute " +
                    ATTR_IDMAPPER_DN + " which specifies the DN of the " +
                    "identity mapper to use in conjunction with the GSSAPI " +
                    "SASL mechanism.  This is a required attribute.");
    registerMessage(MSGID_SASLGSSAPI_NO_SUCH_IDENTITY_MAPPER,
                    "The identity mapper %s specified in attribute " +
                    ATTR_IDMAPPER_DN + " of configuration entry %s does not " +
                    "reference a valid identity mapper configuration that is " +
                    "enabled for use in the Directory Server.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_GET_IDENTITY_MAPPER,
                    "An error occurred while trying to process the value " +
                    "of the " + ATTR_IDMAPPER_DN + " attribute in " +
                    "configuration entry %s to determine which identity " +
                    "mapper should be used in conjunction with the GSSAPI " +
                    "SASL mechanism:  %s.");
    registerMessage(MSGID_SASLGSSAPI_DESCRIPTION_SERVER_FQDN,
                    "Specifies the fully-qualified domain name that should " +
                    "be used for the server during SASL GSSAPI " +
                    "authentication.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_GET_SERVER_FQDN,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_SERVER_FQDN +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLGSSAPI_UPDATED_USERNAME_ATTR,
                    "Attribute " + ATTR_USERNAME_ATTRIBUTE +
                    " in configuration entry %s has been updated.  The %s " +
                    "attribute will now be used when looking up user entries " +
                    "based on their username.");
    registerMessage(MSGID_SASLGSSAPI_UPDATED_USER_BASE_DN,
                    "Attribute " + ATTR_USER_BASE_DN +
                    " in configuration entry %s has been updated.  The DN %s " +
                    "will now be used as the search base when looking up " +
                    "user entries based on their username.");
    registerMessage(MSGID_SASLGSSAPI_UPDATED_IDENTITY_MAPPER,
                    "Attribute " + ATTR_IDMAPPER_DN +
                    " in configuration entry %s has been updated.  The value " +
                    "\"%s\" will now be used as the DN of the identity " +
                    "mapper configuration entry for GSSAPI authentication.");
    registerMessage(MSGID_SASLGSSAPI_UPDATED_NEW_SERVER_FQDN,
                    "Attribute " + ATTR_SERVER_FQDN +
                    " in configuration entry %s has been updated.  The value " +
                    "\"%s\" will now be used as the fully-qualified name of " +
                    "the Directory Server for GSSAPI authentication.");
    registerMessage(MSGID_SASLGSSAPI_UPDATED_NO_SERVER_FQDN,
                    "Attribute " + ATTR_SERVER_FQDN +
                    " in configuration entry %s has been updated.  The " +
                    "Directory Server will attempt to determine its own " +
                    "FQDN for use in GSSAPI authentication.");
    registerMessage(MSGID_SASLGSSAPI_UNEXPECTED_CALLBACK,
                    "An unexpected callback was provided for the SASL server " +
                    "for use during GSSAPI authentication:  %s.");
    registerMessage(MSGID_SASLGSSAPI_DESCRIPTION_KDC_ADDRESS,
                    "Specifies the address of the KDC that should be used " +
                    "during SASL GSSAPI authentication.  If this is not " +
                    "specified, then an attempt will be made to obtain it " +
                    "from the system-wide Kerberos configuration.  Changes " +
                    "to this configuration attribute will take effect " +
                    "immediately for subsequent GSSAPI bind attempts.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_GET_KDC_ADDRESS,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_GSSAPI_KDC +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLGSSAPI_DESCRIPTION_REALM,
                    "Specifies the default realm that should be used during " +
                    "SASL GSSAPI authentication.  If this is not specified, " +
                    "then an attempt will be made to obtain it from the " +
                    "system-wide Kerberos configuration.  Changes to this " +
                    "configuration attribute will take effect immediately " +
                    "for subsequent GSSAPI bind attempts.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_GET_REALM,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_GSSAPI_REALM +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLGSSAPI_NO_CLIENT_CONNECTION,
                    "No client connection was available for use in " +
                    "processing the GSSAPI bind request.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_CREATE_SASL_SERVER,
                    "An error occurred while attempting to create the " +
                    "SASL server instance to process the GSSAPI bind " +
                    "request:  %s.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_EVALUATE_RESPONSE,
                    "An error occurred while attempting to evaluate the " +
                    "challenge response provided by the client in the " +
                    "GSSAPI bind request:  %s.");
    registerMessage(MSGID_SASLGSSAPI_NO_AUTHZ_ID,
                    "The GSSAPI authentication process appears to have " +
                    "completed but no authorization ID is available for " +
                    "mapping to a directory user.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_PERFORM_INTERNAL_SEARCH,
                    "An error occurred while attempting to perform an " +
                    "internal search to map the GSSAPI authorization ID %s " +
                    "to a Directory Server user (result code %d, error " +
                    "message \"%s\").");
    registerMessage(MSGID_SASLGSSAPI_MULTIPLE_MATCHING_ENTRIES,
                    "The GSSAPI authorization ID %s appears to have multiple " +
                    "matches in the Directory Server.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_MAP_AUTHZID,
                    "The GSSAPI authorization ID %s could not be mapped to " +
                    "any user in the Directory Server.");
    registerMessage(MSGID_SASLGSSAPI_UPDATED_KDC,
                    "Attribute " + ATTR_GSSAPI_KDC +
                    " in configuration entry %s has been updated.  The value " +
                    "\"%s\" will now be used as the address of the KDC for " +
                    "GSSAPI authentication.");
    registerMessage(MSGID_SASLGSSAPI_UNSET_KDC,
                    "Attribute " + ATTR_GSSAPI_KDC +
                    " in configuration entry %s has been un-set as a system " +
                    "property.  Any further GSSAPI authentication attempts " +
                    "will rely on the Kerberos configuration in the " +
                    "underlying operating system to determine the KDC " +
                    "address.");
    registerMessage(MSGID_SASLGSSAPI_UPDATED_REALM,
                    "Attribute " + ATTR_GSSAPI_REALM +
                    " in configuration entry %s has been updated.  The value " +
                    "\"%s\" will now be used as the default realm for GSSAPI " +
                    "authentication.");
    registerMessage(MSGID_SASLGSSAPI_UNSET_REALM,
                    "Attribute " + ATTR_GSSAPI_REALM +
                    " in configuration entry %s has been un-set as a system " +
                    "property.  Any further GSSAPI authentication attempts " +
                    "will rely on the Kerberos configuration in the " +
                    "underlying operating system to determine the default " +
                    "realm.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_CREATE_LOGIN_CONTEXT,
                    "An error occurred while attempting to create the JAAS " +
                    "login context for GSSAPI authentication:  %s.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_AUTHENTICATE_SERVER,
                    "An error occurred while attempting to perform " +
                    "server-side Kerberos authentication to support a GSSAPI " +
                    "bind operation:  %s.");
    registerMessage(MSGID_SASLGSSAPI_DESCRIPTION_KEYTAB_FILE,
                    "Specifies the path to the keytab file containing the " +
                    "secret key for the Kerberos principal to use when " +
                    "processing GSSAPI authentication.  If this is not " +
                    "specified, then the system-wide default keytab file " +
                    "will be used.  Changes to this configuration attribute " +
                    "will not take effect until the GSSAPI SASL mechanism " +
                    "handler is disabled and re-enabled or the Directory " +
                    "Server is restarted.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_GET_KEYTAB_FILE,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_GSSAPI_KEYTAB_FILE +
                    " attribute in configuration entry %s:  %s.");
    registerMessage(MSGID_SASLGSSAPI_CANNOT_CREATE_JAAS_CONFIG,
                    "An error occurred while attempting to write a " +
                    "temporary JAAS configuration file for use during " +
                    "GSSAPI processing:  %s.");
    registerMessage(MSGID_SASLGSSAPI_DIFFERENT_AUTHID_AND_AUTHZID,
                    "The authentication ID %s was not equal to the " +
                    "authorization ID %s.  This is not supported for " +
                    "GSSAPI authentication.");
 
 
    registerMessage(MSGID_EXTOP_WHOAMI_NO_CLIENT_CONNECTION,
                    "No client connection structure is available for use in " +
                    "determining the requested authorization ID.");
 
 
    registerMessage(MSGID_SOFTREFCACHE_DESCRIPTION_LOCK_TIMEOUT,
                    "Specifies the maximum length of time in milliseconds " +
                    "that the entry cache should block while attempting " +
                    "to acquire a lock for an entry.  Changes to this " +
                    "configuration attribute will take effect immediately.");
    registerMessage(MSGID_SOFTREFCACHE_CANNOT_DETERMINE_LOCK_TIMEOUT,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_SOFTREFCACHE_LOCK_TIMEOUT +
                    " attribute in configuration entry %s:  %s.  The default " +
                    "of %d will be used.");
    registerMessage(MSGID_SOFTREFCACHE_DESCRIPTION_INCLUDE_FILTERS,
                    "Specifies a set of search filters that may be used to " +
                    "indicate which entries should be included in the entry " +
                    "cache.  Entries that do not match at least one of these " +
                    "filters will not be stored in the cache.  If no filters " +
                    "are provided, then any entry will be accepted.  Changes " +
                    "to this configuration attribute will take effect " +
                    "immediately, but will not impact existing entries that " +
                    "are already held in the cache.");
    registerMessage(MSGID_SOFTREFCACHE_CANNOT_DECODE_INCLUDE_FILTER,
                    "An error occurred while attempting to decode the value " +
                    "\"%s\" from attribute " +
                    ATTR_SOFTREFCACHE_INCLUDE_FILTER + " of entry %s:  %s.  " +
                    "This filter will not be used when determining whether " +
                    "to store an entry in the cache.");
    registerMessage(MSGID_SOFTREFCACHE_CANNOT_DECODE_ANY_INCLUDE_FILTERS,
                    "An error occurred while attempting to decode any of the " +
                    "values from attribute " +
                    ATTR_SOFTREFCACHE_INCLUDE_FILTER + " of entry %s.  All " +
                    "entries will be considered eligible for inclusion in " +
                    "the cache.");
    registerMessage(MSGID_SOFTREFCACHE_CANNOT_DETERMINE_INCLUDE_FILTERS,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_SOFTREFCACHE_INCLUDE_FILTER +
                    " attribute in configuration entry %s:  %s.  All entries " +
                    "will be considered eligible for inclusion in the cache.");
    registerMessage(MSGID_SOFTREFCACHE_DESCRIPTION_EXCLUDE_FILTERS,
                    "Specifies a set of search filters that may be used to " +
                    "indicate which entries should be excluded from the " +
                    "entry cache.  Entries that match any of these filters " +
                    "will not be stored in the cache.  If no filters are " +
                    "provided, then any entry will be accepted.  Changes to " +
                    "this configuration attribute will take effect " +
                    "immediately, but will not impact existing entries that " +
                    "are already held in the cache.");
    registerMessage(MSGID_SOFTREFCACHE_CANNOT_DECODE_EXCLUDE_FILTER,
                    "An error occurred while attempting to decode the value " +
                    "\"%s\" from attribute " +
                    ATTR_SOFTREFCACHE_EXCLUDE_FILTER + " of entry %s:  %s.  " +
                    "This filter will not be used when determining whether " +
                    "to store an entry in the cache.");
    registerMessage(MSGID_SOFTREFCACHE_CANNOT_DECODE_ANY_EXCLUDE_FILTERS,
                    "An error occurred while attempting to decode any of the " +
                    "values from attribute " +
                    ATTR_SOFTREFCACHE_EXCLUDE_FILTER + " of entry %s.  All " +
                    "entries will be considered eligible for inclusion in " +
                    "the cache.");
    registerMessage(MSGID_SOFTREFCACHE_CANNOT_DETERMINE_EXCLUDE_FILTERS,
                    "An error occurred while attempting to determine the " +
                    "value of the " + ATTR_SOFTREFCACHE_EXCLUDE_FILTER +
                    " attribute in configuration entry %s:  %s.  All entries " +
                    "will be considered eligible for inclusion in the cache.");
    registerMessage(MSGID_SOFTREFCACHE_INVALID_LOCK_TIMEOUT,
                    "The " + ATTR_SOFTREFCACHE_LOCK_TIMEOUT + " attribute of " +
                    "entry %s, which specifies the maximum length of time in " +
                    "milliseconds that the cache should block while " +
                    "attempting to obtain a lock on an entry, has an invalid " +
                    "value:  %s.  Its value must be a positive integer, or " +
                    "zero to indicate that it should never block.");
    registerMessage(MSGID_SOFTREFCACHE_INVALID_INCLUDE_FILTER,
                    "The " + ATTR_SOFTREFCACHE_INCLUDE_FILTER + " attribute " +
                    "of entry %s, which specifies a set of search filters " +
                    "that may be used to control which entries are included " +
                    "in the cache, has an invalid value of \"%s\":  %s.");
    registerMessage(MSGID_SOFTREFCACHE_INVALID_INCLUDE_FILTERS,
                    "The " + ATTR_SOFTREFCACHE_INCLUDE_FILTER + " attribute " +
                    "of entry %s, which specifies a set of search filters " +
                    "that may be used to control which entries are included " +
                    "in the cache, has an invalid value:  %s.");
    registerMessage(MSGID_SOFTREFCACHE_INVALID_EXCLUDE_FILTER,
                    "The " + ATTR_SOFTREFCACHE_EXCLUDE_FILTER + " attribute " +
                    "of entry %s, which specifies a set of search filters " +
                    "that may be used to control which entries are excluded " +
                    "from the cache, has an invalid value of \"%s\":  %s.");
    registerMessage(MSGID_SOFTREFCACHE_INVALID_EXCLUDE_FILTERS,
                    "The " + ATTR_SOFTREFCACHE_EXCLUDE_FILTER + " attribute " +
                    "of entry %s, which specifies a set of search filters " +
                    "that may be used to control which entries are excluded " +
                    "from the cache, has an invalid value:  %s.");
    registerMessage(MSGID_SOFTREFCACHE_UPDATED_LOCK_TIMEOUT,
                    "The lock timeout that will be used to determine the " +
                    "length of time that the cache should block while " +
                    "attempting to acquire a lock for an entry has been " +
                    "set to %d milliseconds.");
    registerMessage(MSGID_SOFTREFCACHE_UPDATED_INCLUDE_FILTERS,
                    "The set of search filters that will control which " +
                    "entries may be included in the cache has been updated.");
    registerMessage(MSGID_SOFTREFCACHE_UPDATED_EXCLUDE_FILTERS,
                    "The set of search filters that will control which " +
                    "entries should be be excluded from the cache has been " +
                    "updated.");
 
 
    registerMessage(MSGID_EXACTMAP_DESCRIPTION_MATCH_ATTR,
                    "Specifies the name or OID of the attribute whose value " +
                    "should exactly match the ID string provided to this " +
                    "identity mapper.  At least one value must be provided.  " +
                    "All values must refer to the name or OID of an " +
                    "attribute type defined in the Directory Server schema.  " +
                    "If multiple attribute type names or OIDs are provided, " +
                    "then at least one of those attributes must contain the " +
                    "provided ID string value in exactly one entry.");
    registerMessage(MSGID_EXACTMAP_NO_MATCH_ATTR,
                    "Configuration entry %s does not have any values for " +
                    "attribute " + ATTR_MATCH_ATTRIBUTE + ", which is used " +
                    "to specify which attribute(s) may be used to map a " +
                    "given ID string to a user entry.");
    registerMessage(MSGID_EXACTMAP_UNKNOWN_ATTR,
                    "Configuration entry %s contains value %s for attribute " +
                    ATTR_MATCH_ATTRIBUTE + " but that is not a valid name or " +
                    "OID for any attribute type defined in the Directory " +
                    "Server schema.");
    registerMessage(MSGID_EXACTMAP_CANNOT_DETERMINE_MATCH_ATTR,
                    "An error occurred while attempting to process the " +
                    "value(s) of attribute " + ATTR_MATCH_ATTRIBUTE +
                    " in configuration entry %s:  %s.");
    registerMessage(MSGID_EXACTMAP_DESCRIPTION_SEARCH_BASE,
                    "Specifies the base DN(s) that should be used when " +
                    "performing searches to map the provided ID string to a " +
                    "user entry.  If no values are provided, then the " +
                    "root DSE will be used as the search base.");
    registerMessage(MSGID_EXACTMAP_CANNOT_DETERMINE_MATCH_BASE,
                    "An error occurred while attempting to process the " +
                    "value(s) of attribute " + ATTR_MATCH_BASE +
                    " in configuration entry %s:  %s.");
    registerMessage(MSGID_EXACTMAP_UPDATED_MATCH_ATTRS,
                    "The set of attributes to use when matching ID strings " +
                    "to user entries contained in attribute " +
                    ATTR_MATCH_ATTRIBUTE + " of configuration entry %s has " +
                    "been updated.");
    registerMessage(MSGID_EXACTMAP_UPDATED_MATCH_BASES,
                    "The set of search base DNs to use when matching ID " +
                    "strings to user entries contained in attribute " +
                    ATTR_MATCH_BASE + " of configuration entry %s has been " +
                    "updated.");
    registerMessage(MSGID_EXACTMAP_MULTIPLE_MATCHING_ENTRIES,
                    "ID string %s mapped to multiple users.");
    registerMessage(MSGID_EXACTMAP_INEFFICIENT_SEARCH,
                    "The internal search based on ID string %s could not be " +
                    "processed efficiently:  %s.  Check the server " +
                    "configuration to ensure that all associated backends " +
                    "are properly configured for these types of searches.");
    registerMessage(MSGID_EXACTMAP_SEARCH_FAILED,
                    "An internal failure occurred while attempting to " +
                    "resolve ID string %s to a user entry:  %s.");
 
 
    registerMessage(MSGID_EXTOP_CANCEL_NO_REQUEST_VALUE,
                    "Unable to process the cancel request because the " +
                    "extended operation did not include a request value.");
    registerMessage(MSGID_EXTOP_CANCEL_CANNOT_DECODE_REQUEST_VALUE,
                    "An error occurred while attempting to decode the value " +
                    "of the cancel extended request:  %s.");
    registerMessage(MSGID_EXTOP_CANCEL_REASON,
                    "Processing on this operation was terminated as a " +
                    "result of receiving a cancel request (message ID %d).");
 
 
    registerMessage(MSGID_PWLENGTHVALIDATOR_DESCRIPTION_MIN_LENGTH,
                    "Specifies the minimum number of characters that a " +
                    "password will be allowed to have.  A value of zero " +
                    "indicates that there is no minimum length.  Changes to " +
                    "this configuration attribute will take effect " +
                    "immediately.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_CANNOT_DETERMINE_MIN_LENGTH,
                    "An error occurred while attempting to determine the " +
                    "minimum allowed password length from the " +
                    ATTR_PASSWORD_MIN_LENGTH + " attribute:  %s.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_DESCRIPTION_MAX_LENGTH,
                    "Specifies the maximum number of characters that a " +
                    "password will be allowed to have.  A value of zero " +
                    "indicates that there is no maximum length.  Changes to " +
                    "this configuration attribute will take effect " +
                    "immediately.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_CANNOT_DETERMINE_MAX_LENGTH,
                    "An error occurred while attempting to determine the " +
                    "maximum allowed password length from the " +
                    ATTR_PASSWORD_MAX_LENGTH + " attribute:  %s.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_MIN_GREATER_THAN_MAX,
                    "The configured minimum password length of %d characters " +
                    "is greater than the configured maximum password length " +
                    "of %d.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_TOO_SHORT,
                    "The provided password is shorter than the minimum " +
                    "required length of %d characters.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_TOO_LONG,
                    "The provided password is longer than the maximum " +
                    "allowed length of %d characters.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_UPDATED_MIN_LENGTH,
                    "The minimum password length has been updated to %d.");
    registerMessage(MSGID_PWLENGTHVALIDATOR_UPDATED_MAX_LENGTH,
                    "The maximum password length has been updated to %d.");
 
 
    registerMessage(MSGID_RANDOMPWGEN_DESCRIPTION_CHARSET,
                    "Specifies the character set(s) that should be used to " +
                    "generate the passwords.  Each character set should " +
                    "be given a name (consisting of only ASCII alphabetic " +
                    "characters) followed immediately by a colon and the set " +
                    "of characters that should be included in that " +
                    "character set.  Changes to this configuration attribute " +
                    "will take effect immediately.");
    registerMessage(MSGID_RANDOMPWGEN_NO_CHARSETS,
                    "Configuration entry \"%s\" does not contain attribute " +
                    ATTR_PASSWORD_CHARSET + " which specifies the sets of " +
                    "characters that should be used when generating the " +
                    "password.  This is a required attribute.");
    registerMessage(MSGID_RANDOMPWGEN_CHARSET_NAME_CONFLICT,
                    "Configuration entry \"%s\" contains multiple " +
                    "definitions for the %s character set.");
    registerMessage(MSGID_RANDOMPWGEN_CANNOT_DETERMINE_CHARSETS,
                    "An error occurred while attempting to decode the " +
                    "value(s) of the configuration attribute " +
                    ATTR_PASSWORD_CHARSET + ", which is used to hold the " +
                    "character set(s) for use in generating the password:  " +
                    "%s.");
    registerMessage(MSGID_RANDOMPWGEN_DESCRIPTION_PWFORMAT,
                    "Specifies the format that should be used for passwords " +
                    "constructed by this password generator.  The value " +
                    "should be a comma-delimited sequence of elements, where " +
                    "each element is the name of a character set followed " +
                    "by a colon and the number of characters to choose at " +
                    "random from that character set.  Changes to this " +
                    "configuration attribute will take effect immediately.");
    registerMessage(MSGID_RANDOMPWGEN_NO_PWFORMAT,
                    "Configuration entry \"%s\" does not contain attribute " +
                    ATTR_PASSWORD_FORMAT + " which specifies the format to " +
                    "use for the generated password.  This is a required " +
                    "attribute.");
    registerMessage(MSGID_RANDOMPWGEN_UNKNOWN_CHARSET,
                    "The password format string \"%s\" references an " +
                    "undefined character set \"%s\".");
    registerMessage(MSGID_RANDOMPWGEN_INVALID_PWFORMAT,
                    "The password format string \"%s\" contains an invalid " +
                    "syntax.  This value should be a comma-delimited " +
                    "sequence of elements, where each element is the name of " +
                    "a character set followed by a colon and the number of " +
                    "characters to choose at random from that character set.");
    registerMessage(MSGID_RANDOMPWGEN_CANNOT_DETERMINE_PWFORMAT,
                    "An error occurred while attempting to decode the " +
                    "value for configuration attribute " +
                    ATTR_PASSWORD_FORMAT + ", which is used to specify the " +
                    "format for the generated passwords:  %s.");
 
 
    registerMessage(
         MSGID_ERRORLOG_ACCTNOTHANDLER_DESCRIPTION_NOTIFICATION_TYPES,
         "Specifies the status notification types for which log messages " +
         "should be generated.  It is a multivalued attribute, and changes " +
         "will take effect immediately.");
    registerMessage(MSGID_ERRORLOG_ACCTNOTHANDLER_INVALID_TYPE,
                    "Configuration entry %s contains unrecognized account " +
                    "status notification type %s.");
    registerMessage(MSGID_ERRORLOG_ACCTNOTHANDLER_CANNOT_GET_NOTIFICATION_TYPES,
                    "An error occurred while attempting to determine " +
                    "the account status notification types from " +
                    "configuration entry %s:  %s.");
    registerMessage(MSGID_ERRORLOG_ACCTNOTHANDLER_NOTIFICATION,
                    "Account-Status-Notification type='%s' userdn='%s' " +
                    "id=%d msg='%s'");
 
 
    registerMessage(MSGID_STATICMEMBERS_NO_SUCH_ENTRY,
                    "Unable to examine entry %s as a potential member of " +
                    "static group %s because that entry does not exist in " +
                    "the Directory Server.");
    registerMessage(MSGID_STATICMEMBERS_CANNOT_GET_ENTRY,
                    "An error occurred while attempting to retrieve entry %s " +
                    "as a potential member of static group %s:  %s.");
 
 
    registerMessage(MSGID_STATICGROUP_INVALID_OC_COMBINATION,
                    "Entry %s cannot be parsed as a valid static group " +
                    "because static groups are not allowed to have both the " +
                    "%s and %s object classes.");
    registerMessage(MSGID_STATICGROUP_NO_VALID_OC,
                    "Entry %s cannot be parsed as a valid static group " +
                    "because it does not contain exactly one of the %s or " +
                    "the %s object classes.");
    registerMessage(MSGID_STATICGROUP_CANNOT_DECODE_MEMBER_VALUE_AS_DN,
                    "Value %s for attribute %s in entry %s cannot be parsed " +
                    "as a valid DN:  %s.  It will be excluded from the set " +
                    "of group members.");
    registerMessage(MSGID_STATICGROUP_ADD_MEMBER_ALREADY_EXISTS,
                    "Cannot add user %s as a new member of static group %s " +
                    "because that user is already in the member list for the " +
                    "group.");
    registerMessage(MSGID_STATICGROUP_ADD_MEMBER_UPDATE_FAILED,
                    "Cannot add user %s as a new member of static group %s " +
                    "because an error occurred while attempting to perform " +
                    "an internal modification to update the group:  %s.");
    registerMessage(MSGID_STATICGROUP_REMOVE_MEMBER_NO_SUCH_MEMBER,
                    "Cannot remove user %s as a member of static group %s " +
                    "because that user is not included in the member list " +
                    "for the group.");
    registerMessage(MSGID_STATICGROUP_REMOVE_MEMBER_UPDATE_FAILED,
                    "Cannot remove user %s as a member of static group %s " +
                    "because an error occurred while attempting to perform " +
                    "an internal modification to update the group:  %s.");
  }
}