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

neil_a_wilson
25.40.2007 44aad3f84d2a820094f3b5e73722778edc8c23f5
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
/*
 * 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 the server backends.
 */
public class BackendMessages
{
  /**
   * The message ID for the message that will be used if an attempt is made to
   * de-register a sub-suffix that has multiple base DNs.  This takes two
   * arguments, which are the DN of the sub-suffix to deregister and the DN of
   * the parent suffix with which the sub-suffix is associated.
   */
  public static final int MSGID_BACKEND_CANNOT_REMOVE_MULTIBASE_SUB_SUFFIX =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_FATAL_ERROR | 1;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * initialize the root DSE backend without providing a configuration entry.
   * This does not take any arguments.
   */
  public static final int MSGID_ROOTDSE_CONFIG_ENTRY_NULL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_FATAL_ERROR | 2;
 
 
 
  /**
   * The message ID for the string that will be used as the description of the
   * root DSE subordinate base DN attribute. This does not take any arguments.
   */
  public static final int MSGID_ROOTDSE_SUBORDINATE_BASE_DESCRIPTION =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 3;
 
 
 
  /**
   * The message ID for the message that will be used if a subordinate base DN
   * is defined for the root DSE that is not associated with any backend.  This
   * takes a single argument, which is the specified subordinate base DN.
   */
  public static final int MSGID_ROOTDSE_NO_BACKEND_FOR_SUBORDINATE_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_WARNING | 4;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * while trying to determine the set of subordinate base DNs to use for the
   * root DSE.  This takes a single argument, which is a string representation
   * of the exception that was thrown.
   */
  public static final int MSGID_ROOTDSE_SUBORDINATE_BASE_EXCEPTION =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_WARNING | 5;
 
 
 
  /**
   * The message ID for the message that will be used if the root DSE backend is
   * asked to retrieve an entry other than the root DSE.  This takes a single
   * argument, which is the DN of the entry that it was asked to retrieve.
   */
  public static final int MSGID_ROOTDSE_GET_ENTRY_NONROOT =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_WARNING | 6;
 
 
 
  /**
   * The message ID for the message that will be used if an add operation is
   * attempted in the root DSE backend.  This takes a single argument, which is
   * the DN of the entry to add.
   */
  public static final int MSGID_ROOTDSE_ADD_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 7;
 
 
 
  /**
   * The message ID for the message that will be used if a delete operation is
   * attempted in the root DSE backend.  This takes a single argument, which is
   * the DN of the entry to delete.
   */
  public static final int MSGID_ROOTDSE_DELETE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 8;
 
 
 
  /**
   * The message ID for the message that will be used if a modify operation is
   * attempted in the root DSE backend.  This takes two arguments, which are the
   * DN of the entry that the user attempted to modify and the DN of the
   * configuration entry for the root DSE backend.
   */
  public static final int MSGID_ROOTDSE_MODIFY_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 9;
 
 
 
  /**
   * The message ID for the message that will be used if a modify DN operation
   * is attempted in the root DSE backend.  This takes a single argument, which
   * is the DN of the entry to rename.
   */
  public static final int MSGID_ROOTDSE_MODIFY_DN_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 10;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * process a search in the root DSE backend with a base that is not the DN of
   * the root DSE.  This takes three arguments, which are the connection ID and
   * operation ID for the search operation, and the requested base DN.
   */
  public static final int MSGID_ROOTDSE_INVALID_SEARCH_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 11;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected exception
   * is encountered while attempting to process a search below the root DSE.
   * This takes three arguments, which are the connection ID and
   * operation ID for the search operation, and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_ROOTDSE_UNEXPECTED_SEARCH_FAILURE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 12;
 
 
 
  /**
   * The message ID for the message that will be used if a search operation
   * below the root DSE specifies an invalid scope.  This takes three arguments,
   * which are the connection ID and operation ID for the search operation, and
   * a string representation of the search scope.
   */
  public static final int MSGID_ROOTDSE_INVALID_SEARCH_SCOPE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 13;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected error
   * occurs while trying to open the LDIF writer to export the root DSE.  This
   * takes a single argument, which is a stack trace of the exception that was
   * caught.
   */
  public static final int MSGID_ROOTDSE_UNABLE_TO_CREATE_LDIF_WRITER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 14;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected error
   * occurs while trying to write the root DSE entry to LDIF.  This takes a
   * single argument, which is a stack trace of the exception that was caught.
   */
  public static final int MSGID_ROOTDSE_UNABLE_TO_EXPORT_DSE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 15;
 
 
 
  /**
   * The message ID for the message that will be used if an LDIF import is
   * attempted for the root DSE backend.  This does not take any arguments.
   */
  public static final int MSGID_ROOTDSE_IMPORT_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 16;
 
 
 
  /**
   * The message ID for the message that will be used if a backup or restore
   * operation is attempted for the root DSE backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_ROOTDSE_BACKUP_AND_RESTORE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 17;
 
 
 
  /**
   * The message ID for the message that will be used if the root DSE
   * configuration is updated so that it will use the default set of suffixes
   * for searches below the root DSE.  This does not take any arguments.
   */
  public static final int MSGID_ROOTDSE_USING_SUFFIXES_AS_BASE_DNS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 18;
 
 
 
  /**
   * The message ID for the message that will be used if the root DSE
   * configuration is updated so that it will use a new set of base DNs for
   * searches below the root DSE.  This takes a single argument, which is a
   * string representation of the new set of base DNs.
   */
  public static final int MSGID_ROOTDSE_USING_NEW_SUBORDINATE_BASE_DNS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 19;
 
 
 
  /**
   * The message ID for the message that will be used if the root DSE
   * configuration is updated so that it will use a new set of user-defined
   * attributes when returning the root DSE.  This does not take any arguments.
   */
  public static final int MSGID_ROOTDSE_USING_NEW_USER_ATTRS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 20;
 
 
 
  /**
   * The message ID for the message that will be used if no configuration entry
   * is provided when attempting to initialize the monitor backend.  This does
   * not take any arguments.
   */
  public static final int MSGID_MONITOR_CONFIG_ENTRY_NULL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 21;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode the base DN for the server monitor information.  This
   * takes a single argument, which is a stack trace of the exception that was
   * caught.
   */
  public static final int MSGID_MONITOR_CANNOT_DECODE_MONITOR_ROOT_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 22;
 
 
 
  /**
   * The message ID for the message that will be used if an add operation is
   * attempted in the monitor backend.  This takes a single argument, which is
   * the DN of the entry to add.
   */
  public static final int MSGID_MONITOR_ADD_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 23;
 
 
 
  /**
   * The message ID for the message that will be used if a delete operation is
   * attempted in the monitor backend.  This takes a single argument, which is
   * the DN of the entry to delete.
   */
  public static final int MSGID_MONITOR_DELETE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 24;
 
 
 
  /**
   * The message ID for the message that will be used if a modify operation is
   * attempted in the monitor backend.  This takes two arguments, which are the
   * DN of the entry that the user attempted to modify and the DN of the
   * configuration entry for the monitor backend.
   */
  public static final int MSGID_MONITOR_MODIFY_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 25;
 
 
 
  /**
   * The message ID for the message that will be used if a modify DN operation
   * is attempted in the monitor backend.  This takes a single argument, which
   * is the DN of the entry to rename.
   */
  public static final int MSGID_MONITOR_MODIFY_DN_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 26;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * attempting to export the base monitor entry.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int MSGID_MONITOR_UNABLE_TO_EXPORT_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 27;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * attempting to export an entry generated from a monitor provider.  This
   * takes two arguments, which are the name of the monitor provider and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_MONITOR_UNABLE_TO_EXPORT_PROVIDER_ENTRY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 28;
 
 
 
  /**
   * The message ID for the message that will be used if an LDIF import is
   * attempted for the monitor backend.  This does not take any arguments.
   */
  public static final int MSGID_MONITOR_IMPORT_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 29;
 
 
 
  /**
   * The message ID for the message that will be used if a backup or restore
   * operation is attempted for the monitor backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_MONITOR_BACKUP_AND_RESTORE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 30;
 
 
 
  /**
   * The message ID for the message that will be used if the monitor
   * configuration is updated so that it will use a new set of user-defined
   * attributes when returning the base monitor entry.  This does not take any
   * arguments.
   */
  public static final int MSGID_MONITOR_USING_NEW_USER_ATTRS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 31;
 
 
 
  /**
   * The message ID for the message that will be used if the monitor backend is
   * requested to retrieve an entry with a null DN.  This does not take any
   * arguments.
   */
  public static final int MSGID_MONITOR_GET_ENTRY_NULL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 32;
 
 
 
  /**
   * The message ID for the message that will be used if the monitor backend is
   * requested to retrieve an entry DN that is too deep.  This takes two
   * arguments, which are the DN of the requested entry and the DN of the base
   * monitor entry.
   */
  public static final int MSGID_MONITOR_BASE_TOO_DEEP =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 33;
 
 
 
  /**
   * The message ID for the message that will be used if the monitor backend is
   * requested to retrieve an entry not below the monitor base.  This takes two
   * arguments, which are the DN of the requested entry and the DN of the base
   * monitor entry.
   */
  public static final int MSGID_MONITOR_INVALID_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 34;
 
 
 
  /**
   * The message ID for the message that will be used if the monitor backend is
   * requested to retrieve an entry with a multivalued RDN.  This takes a single
   * argument, which is the DN of the requested entry.
   */
  public static final int MSGID_MONITOR_MULTIVALUED_RDN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 35;
 
 
 
  /**
   * The message ID for the message that will be used if the monitor backend is
   * requested to retrieve monitor entry with an RDN value that is not the name
   * of a monitor provider.  This takes a single argument, which is the
   * requested provider name.
   */
  public static final int MSGID_MONITOR_NO_SUCH_PROVIDER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 36;
 
 
 
  /**
   * The message ID for the string that will be used to represent the server
   * uptime in a human-readable string.  This takes four arguments, which are
   * the number of days, hours, minutes, and seconds that the server has been
   * online.
   */
  public static final int MSGID_MONITOR_UPTIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 37;
 
 
 
  /**
   * The message ID for the message that will be used if no configuration entry
   * is provided when attempting to initialize the schema backend.  This does
   * not take any arguments.
   */
  public static final int MSGID_SCHEMA_CONFIG_ENTRY_NULL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 38;
 
 
 
  /**
   * The message ID for the message that will be used as the description for the
   * configuration attribute that is used to specify the base DN(s) for the
   * schema entries.  This does not take any arguments.
   */
  public static final int MSGID_SCHEMA_DESCRIPTION_ENTRY_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 39;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the base DN(s) for the schema 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_SCHEMA_CANNOT_DETERMINE_BASE_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 40;
 
 
 
  /**
   * The message ID for the message that will be used if an add operation is
   * attempted in the schema backend.  This takes a single argument, which is
   * the DN of the entry to add.
   */
  public static final int MSGID_SCHEMA_ADD_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 41;
 
 
 
  /**
   * The message ID for the message that will be used if a delete operation is
   * attempted in the schema backend.  This takes a single argument, which is
   * the DN of the entry to delete.
   */
  public static final int MSGID_SCHEMA_DELETE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 42;
 
 
 
  /**
   * The message ID for the message that will be used if a modify operation is
   * attempted in the schema backend.  This takes two arguments, which are the
   * DN of the entry that the user attempted to modify and the DN of the
   * configuration entry for the schema backend.
   */
  public static final int MSGID_SCHEMA_MODIFY_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 43;
 
 
 
  /**
   * The message ID for the message that will be used if a modify DN operation
   * is attempted in the schema backend.  This takes a single argument, which is
   * the DN of the entry to rename.
   */
  public static final int MSGID_SCHEMA_MODIFY_DN_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 44;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * attempting to export the base schema entry.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_UNABLE_TO_EXPORT_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 45;
 
 
 
  /**
   * The message ID for the message that will be used if an LDIF import is
   * attempted for the schema backend.  This does not take any arguments.
   */
  public static final int MSGID_SCHEMA_IMPORT_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 46;
 
 
 
  /**
   * The message ID for the message that will be used if a backup or restore
   * operation is attempted for the schema backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_SCHEMA_BACKUP_AND_RESTORE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 47;
 
 
 
  /**
   * The message ID for the message that will be used if the schema backend is
   * requested to retrieve an entry that is not one of the schema entries.  This
   * takes two arguments, which are the DN of the requested entry and the DN of
   * the base schema entry.
   */
  public static final int MSGID_SCHEMA_INVALID_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 48;
 
 
 
  /**
   * The message ID for the message that will be used if an unexpected error
   * occurs while trying to open the LDIF writer to export the schema.  This
   * takes a single argument, which is a stack trace of the exception that was
   * caught.
   */
  public static final int MSGID_SCHEMA_UNABLE_TO_CREATE_LDIF_WRITER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 49;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that an entry
   * has been successfully deregistered as a base DN for the schema information.
   * This takes a single argument, which is the DN that was deregistered.
   */
  public static final int MSGID_SCHEMA_DEREGISTERED_BASE_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 50;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to deregister a base DN for the schema information.  This takes
   * two arguments, which are the DN to deregister and string representation of
   * the exception that was caught.
   */
  public static final int MSGID_SCHEMA_CANNOT_DEREGISTER_BASE_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 51;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that an entry
   * has been successfully registered as a base DN for the schema information.
   * This takes a single argument, which is the DN that was registered.
   */
  public static final int MSGID_SCHEMA_REGISTERED_BASE_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 52;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to register a base DN for the schema information.  This takes
   * two arguments, which are the DN to register and string representation of
   * the exception that was caught.
   */
  public static final int MSGID_SCHEMA_CANNOT_REGISTER_BASE_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 53;
 
 
 
  /**
   * The message ID for the message that will be used if the schema
   * configuration is updated so that it will use a new set of user-defined
   * attributes when returning the schema entry.  This does not take any
   * arguments.
   */
  public static final int MSGID_SCHEMA_USING_NEW_USER_ATTRS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 54;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to obtain an entry lock in the backend code.  This takes a
   * single argument, which is the DN of the entry for which to obtain the lock.
   */
  public static final int MSGID_BACKEND_CANNOT_LOCK_ENTRY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_FATAL_ERROR | 55;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to obtain the MAC provider for the schema backup.  This takes
   * two arguments, which are the name of the desired MAC algorithm and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_GET_MAC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 56;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to obtain the message digest for the schema backup.  This takes
   * two arguments, which are the name of the desired digest algorithm and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_GET_DIGEST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 57;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to create the archive file for a schema backup.  This takes
   * three arguments, which are the name of the archive file, the path to the
   * archive directory, and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_CREATE_ARCHIVE_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 58;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to obtain the cipher for the schema backup.  This takes two
   * arguments, which are the name of the desired cipher algorithm and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_GET_CIPHER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 59;
 
 
 
  /**
   * The message ID for the message that will be used for the message containing
   * the comment to include in the schema archive zip.  This takes two
   * arguments, which are the Directory Server product name and the backup ID.
   */
  public static final int MSGID_SCHEMA_BACKUP_ZIP_COMMENT =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 60;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to obtain a list of the schema files to include in the backup.
   * This takes two arguments, which are the path to the directory containing
   * the schema files and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_LIST_SCHEMA_FILES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 61;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to back up a schema file.  This takes two arguments, which are
   * the name of the schema file and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_BACKUP_SCHEMA_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 62;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to close the output stream for the schema archive.  This takes
   * three arguments, which are the name of the schema archive file, the path
   * to the directory containing that file, and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_CLOSE_ZIP_STREAM =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 63;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to update the backup descriptor with information about the
   * schema backup.  This takes two arguments, which are the path to the backup
   * descriptor file and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SCHEMA_BACKUP_CANNOT_UPDATE_BACKUP_DESCRIPTOR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 64;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * restore schema backup but the requested backup could not be found.  This
   * takes two arguments, which are the backup ID and the path to the backup
   * directory.
   */
  public static final int MSGID_SCHEMA_RESTORE_NO_SUCH_BACKUP =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 65;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * restore schema backup but it cannot be determined which archive file holds
   * that backup.  This takes two arguments, which are the backup ID and the
   * path to the backup directory.
   */
  public static final int MSGID_SCHEMA_RESTORE_NO_BACKUP_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 66;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * restore schema backup but the archive file does not exist.  This takes two
   * arguments, which are the backup ID and the expected path to the archive
   * file.
   */
  public static final int MSGID_SCHEMA_RESTORE_NO_SUCH_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 67;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine whether the backup archive exists.  This takes three
   * arguments, which are the backup ID, the expected path to the backup
   * archive, and a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_CHECK_FOR_ARCHIVE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 68;
 
 
 
  /**
   * The message ID for the message that will be used if a schema backup is
   * hashed but the digest algorithm is not known.  This takes a single
   * argument, which is the backup ID.
   */
  public static final int MSGID_SCHEMA_RESTORE_UNKNOWN_DIGEST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 69;
 
 
 
  /**
   * The message ID for the message that will be used if a schema backup has a
   * hash with an unknown or unsupported digest algorithm.  This takes two
   * arguments, which are the backup ID and the digest algorithm.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_GET_DIGEST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 70;
 
 
 
  /**
   * The message ID for the message that will be used if a schema backup is
   * signed but the MAC algorithm is not known.  This takes a single argument,
   * which is the backup ID.
   */
  public static final int MSGID_SCHEMA_RESTORE_UNKNOWN_MAC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 71;
 
 
 
  /**
   * The message ID for the message that will be used if a schema backup has a
   * signature with an unknown or unsupported MAC algorithm.  This takes two
   * arguments, which are the backup ID and the MAC algorithm.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_GET_MAC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 72;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to open the file containing the backup archive.  This takes three
   * arguments, which are the backup ID, the path to the backup file, and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_OPEN_BACKUP_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 73;
 
 
 
  /**
   * The message ID for the message that will be used if a schema backup is
   * encrypted but the cipher is not known.  This takes a single argument, which
   * is the backup ID.
   */
  public static final int MSGID_SCHEMA_RESTORE_UNKNOWN_CIPHER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 74;
 
 
 
  /**
   * The message ID for the message that will be used if a schema backup is
   * encrypted with an unknown or unsupported cipher.  This takes two arguments,
   * which are the backup ID and the cipher algorithm.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_GET_CIPHER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 75;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to rename the existing backup directory.  This takes four arguments,
   * which are the backup ID, the path to the current backup directory, the path
   * to which it was to be renamed, and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_RENAME_CURRENT_DIRECTORY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 76;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs during
   * the schema restore process but the original schema was restored to its
   * original location.  This takes a single argument, which is the path to the
   * schema directory.
   */
  public static final int MSGID_SCHEMA_RESTORE_RESTORED_OLD_SCHEMA =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_NOTICE | 77;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * the schema restore process and the original schema files could not be
   * moved back into place.  This takes a single argument, which is the path
   * to the directory containing the original schema files.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_RESTORE_OLD_SCHEMA =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 78;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to create a new directory to hold the restored schema files.  This
   * takes three arguments, which are the backup ID, the desired path for the
   * schema directory, and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_CREATE_SCHEMA_DIRECTORY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 79;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * the schema restore process but the old schema files were saved in an
   * alternate directory.  This takes a single argument, which is the path
   * to the directory containing the original schema files.
   */
  public static final int MSGID_SCHEMA_RESTORE_OLD_SCHEMA_SAVED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 80;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to read the next entry from the schema archive.  This takes three
   * arguments, which are the backup ID, the path to the schema archive, and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_GET_ZIP_ENTRY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 81;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to create a schema file from the backup archive.  This takes three
   * arguments, which are the backup ID, the path to the file that could not be
   * created, and a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_CREATE_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 82;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to read a schema file from the archive or write it to disk.
   * This takes three arguments, which are the backup ID, the name of the file
   * being processed, and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_CANNOT_PROCESS_ARCHIVE_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 83;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to close the zip stream used to read from the archive.  This takes
   * three arguments, which are the backup ID, the path to the backup archive,
   * and a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_RESTORE_ERROR_ON_ZIP_STREAM_CLOSE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 84;
 
 
 
  /**
   * The message ID for the message that will be used if the unsigned hash of
   * the schema backup matches the expected value.  This does not take any
   * arguments.
   */
  public static final int MSGID_SCHEMA_RESTORE_UNSIGNED_HASH_VALID =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_NOTICE | 85;
 
 
 
  /**
   * The message ID for the message that will be used if the unsigned hash of
   * the schema backup does not match the expected value.  This takes a single
   * argument, which is the backup ID.
   */
  public static final int MSGID_SCHEMA_RESTORE_UNSIGNED_HASH_INVALID =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 86;
 
 
 
  /**
   * The message ID for the message that will be used if the signed hash of the
   * schema backup matches the expected value.  This does not take any
   * arguments.
   */
  public static final int MSGID_SCHEMA_RESTORE_SIGNED_HASH_VALID =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_NOTICE | 87;
 
 
 
  /**
   * The message ID for the message that will be used if the signed hash of the
   * schema backup does not match the expected value.  This takes a single
   * argument, which is the backup ID.
   */
  public static final int MSGID_SCHEMA_RESTORE_SIGNED_HASH_INVALID =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 88;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * backup verification process completed successfully.  This takes two
   * arguments, which are the backup ID and the path to the backup directory.
   */
  public static final int MSGID_SCHEMA_RESTORE_VERIFY_SUCCESSFUL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_NOTICE | 89;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * backup verification process completed successfully.  This takes two
   * arguments, which are the backup ID and the path to the backup directory.
   */
  public static final int MSGID_SCHEMA_RESTORE_SUCCESSFUL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_NOTICE | 90;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry has an
   * invalid task state.  This takes two arguments, which are the DN of the
   * task entry and the invalid state value.
   */
  public static final int MSGID_TASK_INVALID_STATE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 91;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry has an
   * invalid scheduled start time.  This takes two arguments, which are the
   * provided scheduled start time value and the DN of the task entry.
   */
  public static final int MSGID_TASK_CANNOT_PARSE_SCHEDULED_START_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 92;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry has an
   * invalid actual start time.  This takes two arguments, which are the
   * provided actual start time value and the DN of the task entry.
   */
  public static final int MSGID_TASK_CANNOT_PARSE_ACTUAL_START_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 93;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry has an
   * invalid completion time.  This takes two arguments, which are the
   * provided completion time value and the DN of the task entry.
   */
  public static final int MSGID_TASK_CANNOT_PARSE_COMPLETION_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 94;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry is missing
   * a required attribute.  This takes two arguments, which are the DN of the
   * task entry and the name of the missing attribute.
   */
  public static final int MSGID_TASK_MISSING_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 95;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry contains
   * multiple attributes for a given attribute type.  This takes two arguments,
   * which are the attribute name and the DN of the task entry.
   */
  public static final int MSGID_TASK_MULTIPLE_ATTRS_FOR_TYPE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 96;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry does not
   * have any values for a required attribute.  This takes two arguments, which
   * are the attribute name and the DN of the task entry.
   */
  public static final int MSGID_TASK_NO_VALUES_FOR_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 97;
 
 
 
  /**
   * The message ID for the message that will be used if a task entry contains
   * a single-valued attribute with multiple values.  This takes two arguments,
   * which are the attribute name and the DN of the task entry.
   */
  public static final int MSGID_TASK_MULTIPLE_VALUES_FOR_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 98;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to execute a task.  This takes two arguments, which is the DN of
   * the task entry and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_TASK_EXECUTE_FAILED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 99;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * does not contain the recurring task ID attribute.  This takes a single
   * argument, which is the name of the recurring task ID attribute.
   */
  public static final int MSGID_RECURRINGTASK_NO_ID_ATTRIBUTE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 100;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * contains multiple attributes with the recurring task ID type.  This takes a
   * single argument, which is the name of the recurring task ID attribute.
   */
  public static final int MSGID_RECURRINGTASK_MULTIPLE_ID_TYPES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 101;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * does not contain any recurring task ID value.  This takes a single
   * argument, which is the name of the recurring task ID attribute.
   */
  public static final int MSGID_RECURRINGTASK_NO_ID =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 102;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * contains multiple recurring task ID values.  This takes a single argument,
   * which is the name of the recurring task ID attribute.
   */
  public static final int MSGID_RECURRINGTASK_MULTIPLE_ID_VALUES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 103;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * does not contain the class name attribute.  This takes a single argument,
   * which is the name of the class name attribute.
   */
  public static final int MSGID_RECURRINGTASK_NO_CLASS_ATTRIBUTE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 104;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * contains multiple attributes with the class name type.  This takes a single
   * argument, which is the name of the class name attribute.
   */
  public static final int MSGID_RECURRINGTASK_MULTIPLE_CLASS_TYPES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 105;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * does not contain any class name value.  This takes a single
   * argument, which is the name of the class name attribute.
   */
  public static final int MSGID_RECURRINGTASK_NO_CLASS_VALUES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 106;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * contains multiple class name values.  This takes a single argument, which
   * is the name of the recurring task ID attribute.
   */
  public static final int MSGID_RECURRINGTASK_MULTIPLE_CLASS_VALUES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 107;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to load a class for use in a recurring task.  This takes three
   * arguments, which are the name of the class, the name of the attribute that
   * holds the class name, and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_RECURRINGTASK_CANNOT_LOAD_CLASS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 108;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to instantiate a task class.  This takes two arguments, which are
   * the name of the specified class and the name of the class that should be
   * the superclass for all Directory Server tasks.
   */
  public static final int MSGID_RECURRINGTASK_CANNOT_INSTANTIATE_CLASS_AS_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 109;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to initialize a task instance.  This takes two arguments, which are
   * the name of the task class and the error message from the initialization
   * failure.
   */
  public static final int MSGID_RECURRINGTASK_CANNOT_INITIALIZE_INTERNAL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 110;
 
 
 
  /**
   * The message ID for the message that will be used if the configuration entry
   * provided when initializing the task backend is null.  This does not take
   * any arguments.
   */
  public static final int MSGID_TASKBE_CONFIG_ENTRY_NULL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 111;
 
 
 
  /**
   * The message ID for the message that will be used if the configuration entry
   * provided when initializing the task backend does not contain any base DNs.
   * This does not take any arguments.
   */
  public static final int MSGID_TASKBE_NO_BASE_DNS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 112;
 
 
 
  /**
   * The message ID for the message that will be used if the configuration entry
   * provided when initializing the task backend contains multiple base DNs.
   * This does not take any arguments.
   */
  public static final int MSGID_TASKBE_MULTIPLE_BASE_DNS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 113;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode the string representation of the recurring tasks parent
   * DN as an actual DN.  This takes two arguments, which are a string
   * representation of the DN to decode and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_TASKBE_CANNOT_DECODE_RECURRING_TASK_BASE_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 114;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode the string representation of the scheduled tasks parent
   * DN as an actual DN.  This takes two arguments, which are a string
   * representation of the DN to decode and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_TASKBE_CANNOT_DECODE_SCHEDULED_TASK_BASE_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 115;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * task retention time configuration attribute.  It does not take any
   * arguments.
   */
  public static final int MSGID_TASKBE_DESCRIPTION_RETENTION_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 116;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to initialize the task retention time.  This takes a single
   * argument, which is a string representation of the stack trace that was
   * caught.
   */
  public static final int MSGID_TASKBE_CANNOT_INITIALIZE_RETENTION_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 117;
 
 
 
  /**
   * The message ID for the message that will be used as the description of the
   * task backing file configuration attribute.  It does not take any arguments.
   */
  public static final int MSGID_TASKBE_DESCRIPTION_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 118;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to initialize the task backing file.  This takes a single
   * argument, which is a string representation of the stack trace that was
   * caught.
   */
  public static final int MSGID_TASKBE_CANNOT_INITIALIZE_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 119;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend but the resulting entry doesn't contain a path
   * for the backing file.  This takes a single argument, which is the name of
   * the attribute that holds the path to the backing file.
   */
  public static final int MSGID_TASKBE_NO_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 120;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend to provide a new backing file path but it
   * references a file that already exists.  This takes a single argument, which
   * is the provided path for the backing file.
   */
  public static final int MSGID_TASKBE_BACKING_FILE_EXISTS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 121;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend to provide a new backing file path but the
   * given path is invalid.  This takes a single argument, which is the provided
   * path for the backing file.
   */
  public static final int MSGID_TASKBE_INVALID_BACKING_FILE_PATH =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 122;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend to provide a new backing file path but the
   * parent directory for that file does not exist.  This takes two arguments,
   * which are the path to the missing parent directory and the backing file.
   */
  public static final int MSGID_TASKBE_BACKING_FILE_MISSING_PARENT =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 123;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend to provide a new backing file path but the
   * parent for that file exists but is not a directory.  This takes two
   * arguments, which are the path to the parent and the backing file.
   */
  public static final int MSGID_TASKBE_BACKING_FILE_PARENT_NOT_DIRECTORY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 124;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend but there is an error getting the path to the
   * backing file.  This takes a single argument, which is a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_TASKBE_ERROR_GETTING_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 125;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend but the resulting entry doesn't contain a
   * completed task retention time.  This takes a single argument, which is the
   * name of the attribute that holds the retention time.
   */
  public static final int MSGID_TASKBE_NO_RETENTION_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 126;
 
 
 
  /**
   * The message ID for the message that will be used if a configuration change
   * is made to the task backend but there is an error getting the completed
   * task retention time.  This takes a single argument, which is a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_TASKBE_ERROR_GETTING_RETENTION_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 127;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * completed task retention time has been updated.  This takes a single
   * argument, which is the new retention time.
   */
  public static final int MSGID_TASKBE_UPDATED_RETENTION_TIME =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 128;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the task
   * backing file path has been updated.  This takes a single argument, which is
   * the new backing file path.
   */
  public static final int MSGID_TASKBE_UPDATED_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 129;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new entry to the task backend but the new entry is not immediately
   * below the scheduled task base or the recurring task base.  This takes two
   * arguments, which are the DN of the scheduled task base and the DN of the
   * recurring task base.
   */
  public static final int MSGID_TASKBE_ADD_DISALLOWED_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 130;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a modify DN operation in the task backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_TASKBE_MODIFY_DN_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 131;
 
 
 
  /**
   * The message ID for the message that will be used as the header for the task
   * data backing file to indicate that it should not be directly edited.  This
   * does not take any arguments.
   */
  public static final int MSGID_TASKBE_BACKING_FILE_HEADER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 132;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a recurring task with the same ID as another recurring task.  This
   * takes a single argument, which is the recurring task ID.
   */
  public static final int MSGID_TASKSCHED_DUPLICATE_RECURRING_ID =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 133;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a task with the same ID as another task.  This takes a single argument,
   * which is the task ID.
   */
  public static final int MSGID_TASKSCHED_DUPLICATE_TASK_ID =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 134;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task cannot
   * be found to schedule the next iteration when the previous iteration has
   * completed.  This takes two arguments, which are the task ID of the
   * completed task and the recurring task ID of the recurring task.
   */
  public static final int MSGID_TASKSCHED_CANNOT_FIND_RECURRING_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 135;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to schedule the next iteration of a recurring task.  This takes
   * two arguments, which are the recurring task ID and a message explaining
   * the problem that occurred.
   */
  public static final int MSGID_TASKSCHED_ERROR_SCHEDULING_RECURRING_ITERATION =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 136;
 
 
 
  /**
   * The message ID for the message that will be used if a recoverable error
   * occurs while parsing the tasks data backing file.  This takes three
   * arguments, which are the path to the tasks backing file, the line number on
   * which the problem occurred, and a message explaining the problem that
   * occurred.
   */
  public static final int MSGID_TASKSCHED_CANNOT_PARSE_ENTRY_RECOVERABLE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 137;
 
 
 
  /**
   * The message ID for the message that will be used if an unrecoverable error
   * occurs while parsing the tasks data backing file.  This takes three
   * arguments, which are the path to the tasks backing file, the line number on
   * which the problem occurred, and a message explaining the problem that
   * occurred.
   */
  public static final int MSGID_TASKSCHED_CANNOT_PARSE_ENTRY_FATAL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_FATAL_ERROR | 138;
 
 
 
  /**
   * The message ID for the message that will be used if an entry is read from
   * the backing file that does not have a parent and is not the tasks root
   * entry.  This takes two arguments, which are the DN of the entry read and
   * the DN of the tasks root entry.
   */
  public static final int MSGID_TASKSCHED_ENTRY_HAS_NO_PARENT =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 139;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to parse an entry as a recurring task and add it to the
   * scheduler.  This takes two arguments, which are the DN of the entry and
   * a message explaining the problem that occurred.
   */
  public static final int
       MSGID_TASKSCHED_CANNOT_SCHEDULE_RECURRING_TASK_FROM_ENTRY =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 140;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to parse an entry as a task and add it to the scheduler.  This
   * takes two arguments, which are the DN of the entry and a message explaining
   * the problem that occurred.
   */
  public static final int MSGID_TASKSCHED_CANNOT_SCHEDULE_TASK_FROM_ENTRY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 141;
 
 
 
  /**
   * The message ID for the message that will be used if an entry has a DN that
   * is not valid for a task or recurring task.  This takes two arguments, which
   * are the DN of the entry and the path to the tasks backing file.
   */
  public static final int MSGID_TASKSCHED_INVALID_TASK_ENTRY_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 142;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to read the tasks data backing file.  This takes two arguments,
   * which are the path to the backing file and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_TASKSCHED_ERROR_READING_TASK_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 143;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to create the tasks data backing file.  This takes two arguments,
   * which are the path to the tasks backing file and a message explaining the
   * problem that occurred.
   */
  public static final int MSGID_TASKSCHED_CANNOT_CREATE_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 144;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * does not contain the class name attribute.  This takes a single argument,
   * which is the name of the class name attribute.
   */
  public static final int MSGID_TASKSCHED_NO_CLASS_ATTRIBUTE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 145;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * contains multiple attributes with the class name type.  This takes a single
   * argument, which is the name of the class name attribute.
   */
  public static final int MSGID_TASKSCHED_MULTIPLE_CLASS_TYPES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 146;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * does not contain any class name value.  This takes a single
   * argument, which is the name of the class name attribute.
   */
  public static final int MSGID_TASKSCHED_NO_CLASS_VALUES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 147;
 
 
 
  /**
   * The message ID for the message that will be used if a recurring task entry
   * contains multiple class name values.  This takes a single argument, which
   * is the name of the recurring task ID attribute.
   */
  public static final int MSGID_TASKSCHED_MULTIPLE_CLASS_VALUES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 148;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to load a class for use in a recurring task.  This takes three
   * arguments, which are the name of the class, the name of the attribute that
   * holds the class name, and a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_TASKSCHED_CANNOT_LOAD_CLASS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 149;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to instantiate a task class.  This takes two arguments, which are
   * the name of the specified class and the name of the class that should be
   * the superclass for all Directory Server tasks.
   */
  public static final int MSGID_TASKSCHED_CANNOT_INSTANTIATE_CLASS_AS_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 150;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to initialize a task instance.  This takes two arguments, which are
   * the name of the task class and the error message from the initialization
   * failure.
   */
  public static final int MSGID_TASKSCHED_CANNOT_INITIALIZE_INTERNAL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 151;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to rename the current tasks backing file to save it for future
   * reference.  This takes three arguments, which are the path to the current
   * file, the path to the save file, and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_TASKSCHED_CANNOT_RENAME_CURRENT_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_WARNING | 152;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to rename the new tasks backing file into place.  This takes three
   * arguments, which are the path to the new backing file, the path to the
   * current backing file, and a string representation of the  exception that
   * was caught.
   */
  public static final int MSGID_TASKSCHED_CANNOT_RENAME_NEW_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 153;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to write a new tasks backing file to reflect an updated
   * configuration.  This takes two arguments, which are the path to the new
   * file it was trying to create and a message explaining the problem that
   * occurred.
   */
  public static final int MSGID_TASKSCHED_CANNOT_WRITE_BACKING_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 154;
 
 
 
  /**
   * The message ID for the message that will be used if an LDIF import is
   * attempted for the task backend.  This does not take any arguments.
   */
  public static final int MSGID_TASKBE_IMPORT_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 155;
 
 
 
  /**
   * The message ID for the message that will be used as the shutdown message
   * for task threads when the task scheduler is being stopped.
   */
  public static final int MSGID_TASKBE_INTERRUPTED_BY_SHUTDOWN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 156;
 
 
 
  /**
   * The message ID for the message that will be used as the description for the
   * configuration attribute that indicates whether to treat all root DSE
   * attributes as user attributes.  It does not take any arguments.
   */
  public static final int MSGID_ROOTDSE_DESCRIPTION_SHOW_ALL_ATTRIBUTES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 157;
 
 
 
  /**
   * The message ID for the message that will be used if a problem occurs while
   * trying to determine the value of the configuration attribute that controls
   * whether to treat all root DSE attributes as user attributes.  It takes two
   * arguments, which are the name of the attribute and a string representation
   * of the exception that was caught.
   */
  public static final int MSGID_ROOTDSE_CANNOT_DETERMINE_ALL_USER_ATTRIBUTES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 158;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that the
   * configuration setting controlling whether root DSE attributes will all be
   * treated as user attributes has been updated.  This takes two arguments,
   * which are the name of the configuration attribute and a string
   * representation of the new value.
   */
  public static final int MSGID_ROOTDSE_UPDATED_SHOW_ALL_ATTRS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 159;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a recurring task when an existing iteration is already scheduled.
   * This takes two arguments, which are the recurring task ID and the scheduled
   * task ID.
   */
  public static final int MSGID_TASKSCHED_REMOVE_RECURRING_EXISTING_ITERATION =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 160;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a pending task when there is no such task.  This takes a single
   * argument, which is the task ID of the task.
   */
  public static final int MSGID_TASKSCHED_REMOVE_PENDING_NO_SUCH_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 161;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a pending task but the specified task is not pending.  This takes a
   * single argument, which is the task ID of the task.
   */
  public static final int MSGID_TASKSCHED_REMOVE_PENDING_NOT_PENDING =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 162;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a completed task, but there is no such task in the completed list.
   * This takes a single argument, which is the task ID for the task.
   */
  public static final int MSGID_TASKSCHED_REMOVE_COMPLETED_NO_SUCH_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 163;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove an entry from the task backend with a DN that is not valid for the
   * tasks backend.  This takes a single argument, which is the provided DN.
   */
  public static final int MSGID_TASKBE_DELETE_INVALID_ENTRY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 164;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a scheduled task from the server when no such task exists.  This
   * takes a single argument, which is the DN of the task entry.
   */
  public static final int MSGID_TASKBE_DELETE_NO_SUCH_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 165;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a scheduled task that is currently running.  This takes a single
   * argument, which is the DN of the task entry.
   */
  public static final int MSGID_TASKBE_DELETE_RUNNING =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 166;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove a recurring task from the server when no such recurring task exists.
   * This takes a single argument, which is the DN of the recurring task entry.
   */
  public static final int MSGID_TASKBE_DELETE_NO_SUCH_RECURRING_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 167;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a search operation in the tasks backend using an invalid base DN.
   * This takes a single argument, which is the specified base DN.
   */
  public static final int MSGID_TASKBE_SEARCH_INVALID_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 168;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a search operation in the tasks backend using a base DN below the
   * scheduled tasks parent entry but that does not refer to an existing task.
   * This takes a single argument, which is the specified base DN.
   */
  public static final int MSGID_TASKBE_SEARCH_NO_SUCH_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 169;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a search operation in the tasks backend using a base DN below the
   * recurring tasks parent entry but that does not refer to an existing
   * recurring task.  This takes a single argument, which is the specified base
   * DN.
   */
  public static final int MSGID_TASKBE_SEARCH_NO_SUCH_RECURRING_TASK =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 170;
 
 
 
  /**
   * The message ID for the message that will be used if the config entry is
   * null when trying to initialize the backup backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_BACKUP_CONFIG_ENTRY_NULL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 171;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to decode the backup root DN.  This takes a single argument, which
   * is a string representation of the exception that was caught.
   */
  public static final int MSGID_BACKUP_CANNOT_DECODE_BACKUP_ROOT_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 172;
 
 
 
  /**
   * The message ID for the message that will be used as the description for the
   * backup directory list configuration attribute.  This does not take any
   * arguments.
   */
  public static final int MSGID_BACKUP_DESCRIPTION_BACKUP_DIR_LIST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 173;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the backup directory list.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_BACKUP_CANNOT_DETERMINE_BACKUP_DIR_LIST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 174;
 
 
 
  /**
   * The message ID for the message that will be used if the backup DN is
   * requested to retrieve a null entry.  This does not take any arguments.
   */
  public static final int MSGID_BACKUP_GET_ENTRY_NULL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 175;
 
 
 
  /**
   * The message ID for the message that will be used if the backup DN is
   * requested to retrieve an entry with a DN that is not valid for entries in
   * the backend.  This takes a single argument, which is the requested DN.
   */
  public static final int MSGID_BACKUP_INVALID_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 176;
 
 
 
  /**
   * The message ID for the message that will be used if a backup directory DN
   * does not specify the directory location.  This takes a single argument,
   * which is the requested DN.
   */
  public static final int MSGID_BACKUP_DN_DOES_NOT_SPECIFY_DIRECTORY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 177;
 
 
 
  /**
   * The message ID for the message that will be used if requested backup
   * directory is invalid.  This takes two arguments, which are the DN of the
   * backup directory entry and a string representation of the exception that
   * was caught.
   */
  public static final int MSGID_BACKUP_INVALID_BACKUP_DIRECTORY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 178;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to load the backup directory descriptor.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_BACKUP_ERROR_GETTING_BACKUP_DIRECTORY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 179;
 
 
 
  /**
   * The message ID for the message that will be used if a requested backup
   * entry does not include the backup ID in the DN.  This takes a single
   * argument, which is the requested backup entry DN.
   */
  public static final int MSGID_BACKUP_NO_BACKUP_ID_IN_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 180;
 
 
 
  /**
   * The message ID for the message that will be used if a requested backup
   * entry does not have a parent DN.  This takes a single argument, which is
   * the requested backup entry DN.
   */
  public static final int MSGID_BACKUP_NO_BACKUP_PARENT_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 181;
 
 
 
  /**
   * The message ID for the message that will be used if a requested backup
   * entry does not include the backup directory in the DN.  This takes a single
   * argument, which is the requested backup ID.
   */
  public static final int MSGID_BACKUP_NO_BACKUP_DIR_IN_DN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 182;
 
 
 
  /**
   * The message ID for the message that will be used if a requested backup does
   * not exist.  This takes two arguments, which are the backup ID and the
   * backup directory path.
   */
  public static final int MSGID_BACKUP_NO_SUCH_BACKUP =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 183;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform an add operation in the backup backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_BACKUP_ADD_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 184;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a delete operation in the backup backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_BACKUP_DELETE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 185;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a modify operation in the backup backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_BACKUP_MODIFY_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 186;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a modify DN operation in the backup backend.  This does not take
   * any arguments.
   */
  public static final int MSGID_BACKUP_MODIFY_DN_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 187;
 
 
 
  /**
   * The message ID for the message that will be used if a search operation
   * specifies an invalid base DN.  This takes a single argument, which is the
   * requested base DN.
   */
  public static final int MSGID_BACKUP_NO_SUCH_ENTRY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 188;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform an LDIF export in the backup backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_BACKUP_EXPORT_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 189;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform an LDIF import in the backup backend.  This does not take any
   * arguments.
   */
  public static final int MSGID_BACKUP_IMPORT_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 190;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform a backup or restore operation in the backup backend.  This does not
   * take any arguments.
   */
  public static final int MSGID_BACKUP_BACKUP_AND_RESTORE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 191;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * initialize a memory backend with zero or multiple base DNs.  This does not
   * take any arguments.
   */
  public static final int MSGID_MEMORYBACKEND_REQUIRE_EXACTLY_ONE_BASE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 192;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add an entry that already exists.  This takes a single argument, which is
   * the DN of the target entry.
   */
  public static final int MSGID_MEMORYBACKEND_ENTRY_ALREADY_EXISTS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 193;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add an entry that doesn't belong in the backend.  This takes a single
   * argument, which is the DN of the target entry.
   */
  public static final int MSGID_MEMORYBACKEND_ENTRY_DOESNT_BELONG =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 194;
 
 
 
  /**
   * The message ID for the message that will be used if an entry cannot be
   * added because the parent does not exist.  This takes two arguments, which
   * are the entry DN and the parent DN.
   */
  public static final int MSGID_MEMORYBACKEND_PARENT_DOESNT_EXIST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 195;
 
 
 
  /**
   * The message ID for the message that will be used if an operation targets an
   * entry that doesn't exist.  This takes a single argument, which is the DN of
   * the entry.
   */
  public static final int MSGID_MEMORYBACKEND_ENTRY_DOESNT_EXIST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 196;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * delete an entry that has one or more children.  This takes a single
   * argument, which is the DN of the entry.
   */
  public static final int
       MSGID_MEMORYBACKEND_CANNOT_DELETE_ENTRY_WITH_CHILDREN =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 197;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * perform an unsupported modify DN operation.  This does not take any
   * arguments.
   */
  public static final int MSGID_MEMORYBACKEND_MODDN_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 198;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * creating an LDIF writer.  This takes a single argument, which is a message
   * explaining the problem that occurred.
   */
  public static final int MSGID_MEMORYBACKEND_CANNOT_CREATE_LDIF_WRITER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 199;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * writing an entry to LDIF.  This takes two arguments, which are the entry DN
   * and a message explaining the problem that occurred.
   */
  public static final int MSGID_MEMORYBACKEND_CANNOT_WRITE_ENTRY_TO_LDIF =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 200;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * creating an LDIF reader.  This takes a single argument, which is a message
   * explaining the problem that occurred.
   */
  public static final int MSGID_MEMORYBACKEND_CANNOT_CREATE_LDIF_READER =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 201;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * reading an entry from LDIF.  This takes a single argument, which is a
   * message explaining the problem that occurred.
   */
  public static final int MSGID_MEMORYBACKEND_ERROR_READING_LDIF =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 202;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs during
   * an LDIF import.  This takes a single argument, which is a message
   * explaining the problem that occurred.
   */
  public static final int MSGID_MEMORYBACKEND_ERROR_DURING_IMPORT =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 203;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that backup
   * and restore operations are not supported in the memory-based backend.  This
   * does not take any arguments.
   */
  public static final int MSGID_MEMORYBACKEND_BACKUP_RESTORE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 204;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that an entry
   * cannot be renamed if it has children.  This takes a single argument, which
   * is the DN of the target entry.
   */
  public static final int MSGID_MEMORYBACKEND_CANNOT_RENAME_ENRY_WITH_CHILDREN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 205;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that an entry
   * cannot be renamed if it would move to another backend.  This takes a single
   * argument, which is the DN of the target entry.
   */
  public static final int MSGID_MEMORYBACKEND_CANNOT_RENAME_TO_ANOTHER_BACKEND =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 206;
 
 
 
  /**
   * The message ID for the message that will be used to indicate that an entry
   * cannot be renamed because the new parent doesn't exist.  This takes two
   * arguments, which are the current DN and the new parent DN.
   */
  public static final int MSGID_MEMORYBACKEND_RENAME_PARENT_DOESNT_EXIST =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 207;
 
 
 
  /**
   * The message ID for the message that will be used as the description for the
   * configuration attribute that is used to indicate whether all attributes
   * in the subschema entry should be shown even if they are marked operational.
   * This does not take any arguments.
   */
  public static final int MSGID_SCHEMA_DESCRIPTION_SHOW_ALL_ATTRIBUTES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_INFORMATIONAL | 208;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine whether to treat all subschema attributes as user
   * 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_SCHEMA_CANNOT_DETERMINE_SHOW_ALL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 209;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to register a base DN for use in the server.  This takes two
   * arguments, which are the base DN and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_BACKEND_CANNOT_REGISTER_BASEDN =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_FATAL_ERROR | 210;
 
 
 
  /**
   * The message ID for the message that will be used if a modify operation
   * attempts to delete existing schema elements, which is not currently
   * supported.  This does not take any arguments.
   */
  public static final int MSGID_SCHEMA_DELETE_MODTYPE_NOT_SUPPORTED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 211;
 
 
 
  /**
   * The message ID for the message that will be used if a modify operation
   * attempts to replace or increment schema elements, which is not allowed.
   * This takes a single argument, which is the name of the attempted
   * modification type.
   */
  public static final int MSGID_SCHEMA_INVALID_MODIFICATION_TYPE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 212;
 
 
 
  /**
   * The message ID for the message that will be used if a modify operation
   * attempts to modify an attribute type that cannot be changed.  This takes a
   * single argument, which is the name of the target attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_UNSUPPORTED_ATTRIBUTE_TYPE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 213;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to decode a new attribute type.  This takes two arguments, which
   * are the attribute type string and a message explaining the problem that
   * occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_DECODE_ATTRTYPE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 214;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new attribute type with a name or OID that conflicts with an existing
   * attribute type.  This takes two arguments, which are the name of the new
   * attribute type and a message explaining the problem that occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_ATTRTYPE_ALREADY_EXISTS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 215;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to decode a new objectclass.  This takes two arguments, which
   * are the objectclass string and a message explaining the problem that
   * occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_DECODE_OBJECTCLASS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 216;
 
 
 
  /**
   * The message ID for the message that will be used if a new objectclass
   * references an undefined superior class.  This takes two arguments, which
   * are the name of the new objectclass and the name of the undefined superior
   * class.
   */
  public static final int MSGID_SCHEMA_MODIFY_UNDEFINED_SUPERIOR_OBJECTCLASS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 217;
 
 
 
  /**
   * The message ID for the message that will be used if a new objectclass
   * references an undefined required attribute.  This takes two arguments,
   * which are the name of the new objectclass and the name of the undefined
   * attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_OC_UNDEFINED_REQUIRED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 218;
 
 
 
  /**
   * The message ID for the message that will be used if a new objectclass
   * references an undefined optional attribute.  This takes two arguments,
   * which are the name of the new objectclass and the name of the undefined
   * attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_OC_UNDEFINED_OPTIONAL_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 219;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new objectclass type with a name or OID that conflicts with an
   * existing objectclass.  This takes two arguments, which are the name of the
   * new objectclass and a message explaining the problem that occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_OBJECTCLASS_ALREADY_EXISTS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 220;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to read the contents of an existing schema file so that it may
   * be updated.  This takes two arguments, which are the path to the schema
   * file and a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_READ_EXISTING_USER_SCHEMA =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 221;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to write an updated schema file.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_WRITE_NEW_SCHEMA =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 222;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to decode a new name form.  This takes two arguments, which
   * are the name form string and a message explaining the problem that
   * occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_DECODE_NAME_FORM =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 223;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to decode a new DIT content rule.  This takes two arguments,
   * which are the DIT content rule string and a message explaining the problem
   * that occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_DECODE_DCR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 224;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to decode a new DIT structure rule.  This takes two arguments,
   * which are the DIT structure rule string and a message explaining the
   * problem that occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_DECODE_DSR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 225;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to decode a new matching rule use.  This takes two arguments,
   * which are the matching rule use string and a message explaining the problem
   * that occurred.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_DECODE_MR_USE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 226;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * remove all values for a given attribute type.  This takes a single
   * argument, which is the name of that attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_DELETE_NO_VALUES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 227;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new attribute type that conflicts with multiple existing attribute
   * types.  This takes three arguments, which are the name or OID of the new
   * attribute type, and the name or OID of the two attribute types that were
   * found to conflict with the new type.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_ATTRTYPE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 228;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new attribute type that references an undefined superior attribute
   * type.  This takes two arguments, which are the name or OID of the new
   * attribute type and the name or OID of the superior attribute type.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_UNDEFINED_SUPERIOR_ATTRIBUTE_TYPE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 229;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new objectclas that conflicts with multiple existing objectclasses.
   * This takes three arguments, which are the name or OID of the new
   * objectclass, and the name or OID of the two objectclasses that were found
   * to conflict with the new objectclass.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_OBJECTCLASS =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 230;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new name form that conflicts with multiple existing name forms.  This
   * takes three arguments, which are the name or OID of the new name form, and
   * the name or OID of the two name forms that were found to conflict with the
   * new name form.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_NAME_FORM =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 231;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new name form that references an undefined structural objectclass.
   * This takes two arguments, which are the name or OID of the new name form
   * and the name or OID of the undefined objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_NF_UNDEFINED_STRUCTURAL_OC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 232;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new name form that references an undefined required attribute type.
   * This takes two arguments, which are the name or OID of the new name form
   * and the name or OID of the undefined attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_NF_UNDEFINED_REQUIRED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 233;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new name form that references an undefined optional attribute type.
   * This takes two arguments, which are the name or OID of the new name form
   * and the name or OID of the undefined attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_NF_UNDEFINED_OPTIONAL_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 234;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that conflicts with multiple existing DIT
   * content rules.  This takes three arguments, which are the name of the new
   * DIT content rule, and the names of the two DIT content rules that were
   * found to conflict with the new DIT content rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_DCR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 235;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that references a structural objectclass which
   * is already referenced by an existing DIT copntent rule.  This takes three
   * arguments, which are the name of the new DIT content rule, the name or OID
   * of the structural objectclass, and the name of the conflicting DIT content
   * rule.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_STRUCTURAL_OC_CONFLICT_FOR_ADD_DCR =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 236;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that references a structural objectclass which
   * is not defined in the server schema.  This takes two arguments, which are
   * the name of the new DIT content rule and the name or OID of the undefined
   * objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_STRUCTURAL_OC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 237;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that references an auxiliary objectclass which
   * is not defined in the server schema.  This takes two arguments, which are
   * the name of the new DIT content rule and the name or OID of the undefined
   * objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_AUXILIARY_OC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 238;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that references a required attribute type
   * which is not defined in the server schema.  This takes two arguments, which
   * are the name of the new DIT content rule and the name or OID of the
   * undefined attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_REQUIRED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 239;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that references an optional attribute type
   * which is not defined in the server schema.  This takes two arguments, which
   * are the name of the new DIT content rule and the name or OID of the
   * undefined attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_OPTIONAL_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 240;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that references a prohibited attribute type
   * which is not defined in the server schema.  This takes two arguments, which
   * are the name of the new DIT content rule and the name or OID of the
   * undefined attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_PROHIBITED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 241;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT structure rule that conflicts with multiple existing DIT
   * structure rules.  This takes three arguments, which are the name or rule ID
   * of the new DIT structure rule, and the names or rule IDs of the two DIT
   * structure rules that were found to conflict with the new DIT structure
   * rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_DSR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 242;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT structure rule that references a name form that is already
   * referenced by another DIT structure rule.  This takes three arguemnts,
   * which are the name or rule ID of the new DIT structure rule, the name or
   * OID of the name form, and the name or rule ID of the conflicting DIT
   * structure rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_NAME_FORM_CONFLICT_FOR_ADD_DSR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 243;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT structure rule that references a name form that is not
   * defined in the server schema.  This takes two arguments, which are the name
   * or rule ID of the new DIT structure rule and the name or OID of the
   * undefined name form.
   */
  public static final int MSGID_SCHEMA_MODIFY_DSR_UNDEFINED_NAME_FORM =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 244;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new matching rule use that conflicts with multiple existing matching
   * rule uses.  This takes three arguments, which are the name of the new
   * matching rule use, and the names of the two matching rule uses that were
   * found to conflict with the new matching rule use.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_MR_USE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 245;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new matching rule use that references a matching rule that is already
   * associated with another matching rule use.  This takes three arguments,
   * which are the name of the new matching rule use, the name or OID of the
   * matching rule, and the name of the conflicting matching rule use.
   */
  public static final int MSGID_SCHEMA_MODIFY_MR_CONFLICT_FOR_ADD_MR_USE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 246;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new matching rule use that references an attribute type that is not
   * defined in the server schema.  This takes two arguments, which are the
   * name of the new matching rule use and the name or OID of the undefined
   * attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_MRU_UNDEFINED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 247;
 
 
 
  /**
   * The message ID for the message that will be used if a circular reference
   * is detected in the superior chain for an attribute type.  This takes a
   * single argument, which is the name or OID of the attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_CIRCULAR_REFERENCE_AT =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 248;
 
 
 
  /**
   * The message ID for the message that will be used if a circular reference
   * is detected in the superior chain for an objectclass.  This takes a single
   * argument, which is the name or OID of the objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_CIRCULAR_REFERENCE_OC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 249;
 
 
 
  /**
   * The message ID for the message that will be used if a circular reference
   * is detected in the superior chain for a DIT structure rule.  This takes a
   * single argument, which is the name or rule ID of the DIT structure rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_CIRCULAR_REFERENCE_DSR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 250;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to create copies of the current schema files, but the server was
   * able to properly clean up after itself.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_WRITE_ORIG_FILES_CLEANED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 251;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to create copies of the current schema files, and the server was
   * not able to properly clean up after itself.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_CANNOT_WRITE_ORIG_FILES_NOT_CLEANED =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 252;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to write the new schema files, but the server was able to properly
   * clean up after itself.  This takes a single argument,  which is a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_MODIFY_CANNOT_WRITE_NEW_FILES_RESTORED =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 253;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to write the new schema files, and the server was not able to
   * properly clean up after itself.  This takes a single argument, which is a
   * string representation of the exception that was caught.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_CANNOT_WRITE_NEW_FILES_NOT_RESTORED =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 254;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an attribute type from the schema fails because there is no such attribute
   * type defined.  This takes a single argument, which is the name or OID of
   * the attribute type to remove.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_ATTRIBUTE_TYPE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 255;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an attribute type from the schema fails because it is the superior type for
   * another attribute type.  This takes two arguments, which are the name or
   * OID of the attribute type to remove, and the name or OID of the subordinate
   * attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_AT_SUPERIOR_TYPE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 256;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an attribute type from the schema fails because the attribute type is
   * referenced by an objectclass.  This takes two arguments, which are the name
   * or OID of the attribute type and the name or OID of the objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_OC =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 257;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an attribute type from the schema fails because the attribute type is
   * referenced by a name form.  This takes two arguments, which are the name or
   * OID of the attribute type and the name or OID of the name form.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_NF =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 258;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an attribute type from the schema fails because the attribute type is
   * referenced by a DIT content rule.  This takes two arguments, which are the
   * name or OID of the attribute type and the name of the DIT content rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_DCR =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 259;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an attribute type from the schema fails because the attribute type is
   * referenced by a matching rule use.  This takes two arguments, which are the
   * name or OID of the attribute type and the name of the matching rule use.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_MR_USE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 260;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an objectclass from the schema fails because there is no such objectclass
   * defined.  This takes a single argument, which is the name or OID of the
   * objectclass to remove.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_OBJECTCLASS =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 261;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an objectclass from the schema fails because it is the superior class for
   * another objectclass.  This takes two arguments, which are the name or OID
   * of the objectclass to remove, and the name or OID of the subordinate
   * objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_OC_SUPERIOR_CLASS =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 262;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an objectclass from the schema fails because the objectclass is referenced
   * by a name form.  This takes two arguments, which are the name or OID of the
   * objectclass and the name or OID of the name form.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_OC_IN_NF =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 263;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * an objectclass from the schema fails because the objectclass is referenced
   * by a DIT content rule.  This takes two arguments, which are the name or OID
   * of the objectclass and the name of the DIT content rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_OC_IN_DCR =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 264;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * a name form from the schema fails because there is no such name form
   * defined.  This takes a single argument, which is the name or OID of the
   * name form to remove.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_NAME_FORM =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 265;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * a name form from the schema fails because the name form is referenced by a
   * DIT structure rule.  This takes two arguments, which are the name or OID
   * of the name form and the name or rule ID of the DIT structure rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_NF_IN_DSR =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 266;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * a DIT content rule from the schema fails because there is no such DIT
   * content rule defined.  This takes a single argument, which is the name of
   * the DIT content rule to remove.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_DCR =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 267;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * a DIT structure rule from the schema fails because there is no such DIT
   * structure rule defined.  This takes a single argument, which is the name or
   * rule ID of the DIT structure rule to remove.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_DSR =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 268;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * a DIT structure rule from the schema fails because it is the superior rule
   * for another DIT structure rule.  This takes two arguments, which are the
   * name or rule ID of the DIT structure rule to remove, and the name or rule
   * ID of the subordinate rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_DSR_SUPERIOR_RULE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 269;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt to remove
   * a matching rule use from the schema fails because there is no such matching
   * rule use defined.  This takes a single argument, which is the name of the
   * matching rule use to remove.
   */
  public static final int MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_MR_USE =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 270;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new name form that references an objectclass that is not structural.
   * This takes two arguments, which are the name or OID of the new name form
   * and the name or OID of the objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_NF_OC_NOT_STRUCTURAL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 271;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new DIT content rule that references an objectclass that is not
   * structural.  This takes two arguments, which are the name of the new DIT
   * content rule and the name or OID of the objectclass.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_OC_NOT_STRUCTURAL =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 272;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a new name form that references a structural objectclass which is
   * already referenced by an existing name form.  This takes three arguments,
   * which are the name or OID of the new name form, the name or OID of the
   * structural objectclass, and the name or OID of the conflicting name form.
   */
  public static final int
       MSGID_SCHEMA_MODIFY_STRUCTURAL_OC_CONFLICT_FOR_ADD_NF =
            CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 273;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add an attribute type whose superior type is OBSOLETE.  This takes two
   * arguments, which are the name or OID of the attribute type and the name or
   * OID of the superior type.
   */
  public static final int MSGID_SCHEMA_MODIFY_OBSOLETE_SUPERIOR_ATTRIBUTE_TYPE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 274;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add an attribute type with a matching rule that is OBSOLETE.  This takes
   * two arguments, which are the name or OID of the attribute type and the name
   * or OID of the matching rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_ATTRTYPE_OBSOLETE_MR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 275;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add an object class whose superior class is OBSOLETE.  This takes two
   * arguments, which are the name or OID of the object class and the name or
   * OID of the superior class.
   */
  public static final int MSGID_SCHEMA_MODIFY_OBSOLETE_SUPERIOR_OBJECTCLASS =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 276;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add an object class that requires an OBSOLETE attribute type.  This takes
   * two arguments, which are the name or OID of the object class and the name
   * or OID of the required attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_OC_OBSOLETE_REQUIRED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 277;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add an object class that allows an OBSOLETE attribute type.  This takes
   * two arguments, which are the name or OID of the object class and the name
   * or OID of the optional attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_OC_OBSOLETE_OPTIONAL_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 278;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a name form whose structural object class is marked OBSOLETE.  This
   * takes two arguments, which are the name or OID of the name form and the
   * name or OID of the structural object class.
   */
  public static final int MSGID_SCHEMA_MODIFY_NF_OC_OBSOLETE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 279;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a name form that requires an attribute type which is marked OBSOLETE.
   * This takes two arguments, which are the name or OID of the name form and
   * the name or OID of the required attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_NF_OBSOLETE_REQUIRED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 280;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a name form that allows an attribute type which is marked OBSOLETE.
   * This takes two arguments, which are the name or OID of the name form and
   * the  name or OID of the optional attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_NF_OBSOLETE_OPTIONAL_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 281;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT content rule whose structural object class is marked OBSOLETE.
   * This takes two arguments, which are the name of the DIT content rule and
   * the name or OID of the structural object class.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_STRUCTURAL_OC_OBSOLETE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 282;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT content rule with an auxiliary object class that is not declared
   * auxiliary.  This takes two arguments, which are the name of the DIT content
   * rule and the name or OID of the object class.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_OC_NOT_AUXILIARY =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 283;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT content rule with an AUXILIARY object class that is marked
   * OBSOLETE.  This takes two arguments, which are the name of the DIT content
   * rule and the name or OID of the auxiliary object class.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_AUXILIARY_OC_OBSOLETE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 284;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT content rule that requires an attribute type that is marked
   * OBSOLETE.  This takes two arguments, which are the name of the DIT content
   * rule and the name or OID of the attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_REQUIRED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 285;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT content rule that allows an attribute type that is marked
   * OBSOLETE.  This takes two arguments, which are the name of the DIT content
   * rule and the name or OID of the attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_OPTIONAL_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 286;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT content rule that prohibits an attribute type that is marked
   * OBSOLETE.  This takes two arguments, which are the name of the DIT content
   * rule and the name or OID of the attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_PROHIBITED_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 287;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT structure rule whose associated name form is marked OBSOLETE.
   * This takes two arguments, which are the name or rule ID of the DIT
   * structure rule and the name or OID of the name form.
   */
  public static final int MSGID_SCHEMA_MODIFY_DSR_OBSOLETE_NAME_FORM =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 288;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT structure rule with a superior rule that is marked OBSOLETE.
   * This takes two arguments, which are the name or rule ID of the DIT
   * structure rule and the name or rule ID of the superior rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_DSR_OBSOLETE_SUPERIOR_RULE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 289;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a matching rule use with a matching rule that is marked OBSOLETE.  This
   * takes two arguments, which are the name of the matching rule use and the
   * name or OID of the matching rule.
   */
  public static final int MSGID_SCHEMA_MODIFY_MRU_OBSOLETE_MR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 290;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a matching rule use with an attribute type that is marked OBSOLETE.
   * This takes two arguments, which are the name of the matching rule use and
   * the name or OID of the attribute type.
   */
  public static final int MSGID_SCHEMA_MODIFY_MRU_OBSOLETE_ATTR =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 291;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * add a DIT content rule with an auxiliary object class that is declared
   * OBSOLETE.  This takes two arguments, which are the name of the DIT content
   * rule and the name or OID of the object class.
   */
  public static final int MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_AUXILIARY_OC =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 292;
 
 
 
  /**
   * The message ID for the message that will be used if a user attempts to
   * modify the server schema without the appropriate privilege.  This does not
   * take any arguments.
   */
  public static final int MSGID_SCHEMA_MODIFY_INSUFFICIENT_PRIVILEGES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_MILD_ERROR | 293;
 
 
 
  /**
   * The message ID for the message that will be used if the schema backend is
   * unable to find a file containing the concatenated schema definitions.  This
   * takes three arguments, which are the path to the directory in which the
   * file should have been found, the name of the most recent concatenated
   * schema file, and the name of the base concatenated schema file shipped with
   * the server.
   */
  public static final int MSGID_SCHEMA_CANNOT_FIND_CONCAT_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 294;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting determine whether there were any changes made to the server
   * schema while the server was offline.  This takes a single argument, which
   * is a string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_ERROR_DETERMINING_SCHEMA_CHANGES =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 295;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to write a file containing the concatenated server schema.  This
   * takes two arguments, which are the path to the file being written and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_SCHEMA_CANNOT_WRITE_CONCAT_SCHEMA_FILE =
       CATEGORY_MASK_BACKEND | SEVERITY_MASK_SEVERE_ERROR | 296;
 
 
 
  /**
   * Associates a set of generic messages with the message IDs defined in this
   * class.
   */
  public static void registerMessages()
  {
    registerMessage(MSGID_BACKEND_CANNOT_REMOVE_MULTIBASE_SUB_SUFFIX,
                    "An attempt was made to de-register sub-suffix \"%s\" "+
                    "from the backend with suffix \"%s\".  However, the " +
                    "subordinate backend containing that sub-suffix also " +
                    "contains additional sub-suffixes and may not be " +
                    "de-registered.  It may be possible to remove this " +
                    "sub-suffix by editing the configuration for the " +
                    "subordinate backend with which it is associated");
    registerMessage(MSGID_BACKEND_CANNOT_LOCK_ENTRY,
                    "The Directory Server was unable to obtain a lock on " +
                    "entry %s after multiple attempts.  This could mean that " +
                    "the entry is already locked by a long-running operation " +
                    "or that the entry has previously been locked but was " +
                    "not properly unlocked");
    registerMessage(MSGID_BACKEND_CANNOT_REGISTER_BASEDN,
                    "An error occurred while attempting to register base DN " +
                    "in the Directory Server:  %s");
 
 
    registerMessage(MSGID_ROOTDSE_CONFIG_ENTRY_NULL,
                    "An attempt was made to configure the root DSE backend " +
                    "without providing a configuration entry.  This is not " +
                    "allowed");
    registerMessage(MSGID_ROOTDSE_SUBORDINATE_BASE_DESCRIPTION,
                    "Specifies the set of base DNs that will be used for " +
                    "singleLevel, wholeSubtree, and subordinateSubtree " +
                    "searches based at the root DSE.  If this is not " +
                    "provided, then the set of all user-defined suffixes " +
                    "will be used");
    registerMessage(MSGID_ROOTDSE_NO_BACKEND_FOR_SUBORDINATE_BASE,
                    "Base DN \"%s\" is configured as one of the subordinate " +
                    "base DNs to use for searches below the root DSE.  " +
                    "However, this base DN is not handled by any suffix " +
                    "registered with the Directory Server and will therefore " +
                    "not be used");
    registerMessage(MSGID_ROOTDSE_SUBORDINATE_BASE_EXCEPTION,
                    "An unexpected problem occurred while trying to " +
                    "determine the set of subordinate base DNs to use for " +
                    "searches below the root DSE:  %s");
    registerMessage(MSGID_ROOTDSE_DESCRIPTION_SHOW_ALL_ATTRIBUTES,
                    "Indicates whether all attributes in the root DSE should " +
                    "be treated like user attributes (and therefore returned " +
                    "to clients by default) regardless of the Directory " +
                    "Server schema configuration");
    registerMessage(MSGID_ROOTDSE_CANNOT_DETERMINE_ALL_USER_ATTRIBUTES,
                    "An error occurred while trying to determine the value " +
                    "of the %s configuration attribute, which controls " +
                    "whether to treat all root DSE attributes like user " +
                    "attributes:  %s.  The attributes in the root DSE will " +
                    "be treated based on their definition in the server " +
                    "schema");
    registerMessage(MSGID_ROOTDSE_GET_ENTRY_NONROOT,
                    "The root DSE backend was asked to retrieve entry with " +
                    "DN \"%s\".  This backend should only be asked to " +
                    "retrieve the root DSE itself.  However, it will check " +
                    "with the defined subordinate backends and see if it " +
                    "can find the requested entry");
    registerMessage(MSGID_ROOTDSE_ADD_NOT_SUPPORTED,
                    "Unwilling to add entry \"%s\" because add operations " +
                    "are not supported in the root DSE backend");
    registerMessage(MSGID_ROOTDSE_DELETE_NOT_SUPPORTED,
                    "Unwilling to remove entry \"%s\" because delete " +
                    "operations are not supported in the root DSE backend");
    registerMessage(MSGID_ROOTDSE_MODIFY_NOT_SUPPORTED,
                    "Unwilling to update entry \"%s\" because modify " +
                    "operations are not supported in the root DSE backend.  " +
                    "If you wish to alter the contents of the root DSE " +
                    "itself, then it may be possible to do so by modifying " +
                    "the \"%s\" entry in the configuration");
    registerMessage(MSGID_ROOTDSE_MODIFY_DN_NOT_SUPPORTED,
                    "Unwilling to rename entry \"%s\" because modify DN " +
                    "operations are not supported in the root DSE backend");
    registerMessage(MSGID_ROOTDSE_INVALID_SEARCH_BASE,
                    "Unwilling to perform a search (connection ID %d, " +
                    "operation ID %d) with a base DN of \"%s\" in the root " +
                    "DSE backend.  The base DN for searches in this backend " +
                    "must be the DN of the root DSE itself");
    registerMessage(MSGID_ROOTDSE_UNEXPECTED_SEARCH_FAILURE,
                    "An unexpected failure occurred while trying to process " +
                    "a search operation (connection ID %d, operation ID %d) " +
                    "in the root DSE backend:  %s");
    registerMessage(MSGID_ROOTDSE_INVALID_SEARCH_SCOPE,
                    "Unable to process the search with connection ID %d and " +
                    "operation ID %d because it had an invalid scope of %s");
    registerMessage(MSGID_ROOTDSE_UNABLE_TO_CREATE_LDIF_WRITER,
                    "An unexpected error occurred while trying to open the " +
                    "LDIF writer for the root DSE backend:  %s");
    registerMessage(MSGID_ROOTDSE_UNABLE_TO_EXPORT_DSE,
                    "An unexpected error occurred while trying to export the " +
                    "root DSE entry to the specified LDIF target: %s");
    registerMessage(MSGID_ROOTDSE_IMPORT_NOT_SUPPORTED,
                    "The root DSE backend does not support LDIF import " +
                    "operations");
    registerMessage(MSGID_ROOTDSE_BACKUP_AND_RESTORE_NOT_SUPPORTED,
                    "The root DSE backend does not provide a facility for " +
                    "backup and restore operations.  The contents of the " +
                    "root DSE should be backed up as part of the Directory " +
                    "Server configuration");
    registerMessage(MSGID_ROOTDSE_USING_SUFFIXES_AS_BASE_DNS,
                    "The root DSE configuration has been updated so that it " +
                    "will now use the defined set of Directory Server " +
                    "suffixes when performing searches below the root DSE");
    registerMessage(MSGID_ROOTDSE_USING_NEW_SUBORDINATE_BASE_DNS,
                    "The root DSE configuration has been updated so that it " +
                    "will now use the base DN set %s when performing " +
                    "below the root DSE");
    registerMessage(MSGID_ROOTDSE_UPDATED_SHOW_ALL_ATTRS,
                    "The root DSE configuration has been updated so that " +
                    "configuration attribute %s will now use a value of %s");
    registerMessage(MSGID_ROOTDSE_USING_NEW_USER_ATTRS,
                    "The root DSE configuration has been updated so that it " +
                    "will now use a new set of user-defined attributes");
 
 
    registerMessage(MSGID_MONITOR_CONFIG_ENTRY_NULL,
                    "An attempt was made to configure the monitor backend " +
                    "without providing a configuration entry.  This is not " +
                    "allowed, and no monitor information will be available " +
                    "over protocol");
    registerMessage(MSGID_MONITOR_CANNOT_DECODE_MONITOR_ROOT_DN,
                    "An unexpected error occurred while attempting to decode " +
                    DN_MONITOR_ROOT + " as the base DN for the Directory " +
                    "Server monitor information:  %s.  No monitor " +
                    "information will be available over protocol");
    registerMessage(MSGID_MONITOR_ADD_NOT_SUPPORTED,
                    "Unwilling to add entry \"%s\" because add operations " +
                    "are not supported in the monitor backend");
    registerMessage(MSGID_MONITOR_DELETE_NOT_SUPPORTED,
                    "Unwilling to remove entry \"%s\" because delete " +
                    "operations are not supported in the monitor backend");
    registerMessage(MSGID_MONITOR_MODIFY_NOT_SUPPORTED,
                    "Unwilling to update entry \"%s\" because modify " +
                    "operations are not supported in the monitor backend.  " +
                    "If you wish to alter the contents of the base monitor " +
                    "entry itself, then it may be possible to do so by " +
                    "modifying the \"%s\" entry in the configuration");
    registerMessage(MSGID_MONITOR_MODIFY_DN_NOT_SUPPORTED,
                    "Unwilling to rename entry \"%s\" because modify DN " +
                    "operations are not supported in the monitor backend");
    registerMessage(MSGID_MONITOR_UNABLE_TO_EXPORT_BASE,
                    "An error occurred while attempting to export the base " +
                    "monitor entry:  %s");
    registerMessage(MSGID_MONITOR_UNABLE_TO_EXPORT_PROVIDER_ENTRY,
                    "An error occurred while attempting to export the " +
                    "monitor entry for monitor provider %s:  %s");
    registerMessage(MSGID_MONITOR_IMPORT_NOT_SUPPORTED,
                    "The monitor backend does not support LDIF import " +
                    "operations");
    registerMessage(MSGID_MONITOR_BACKUP_AND_RESTORE_NOT_SUPPORTED,
                    "The monitor backend does not provide a facility for " +
                    "backup and restore operations");
    registerMessage(MSGID_MONITOR_USING_NEW_USER_ATTRS,
                    "The monitor configuration has been updated so that it " +
                    "will now use a new set of user-defined attributes");
    registerMessage(MSGID_MONITOR_GET_ENTRY_NULL,
                    "Unable to retrieve the requested entry from the monitor " +
                    "backend because the provided DN was null");
    registerMessage(MSGID_MONITOR_BASE_TOO_DEEP,
                    "Unable to retrieve the requested entry %s from the " +
                    "monitor backend because the DN is too deep.  Monitor " +
                    "entries may not be more than one level below %s");
    registerMessage(MSGID_MONITOR_INVALID_BASE,
                    "Unable to retrieve the requested entry %s from the " +
                    "monitor backend because the DN is not below the monitor " +
                    "base of %s");
    registerMessage(MSGID_MONITOR_MULTIVALUED_RDN,
                    "Unable to retrieve the requested entry %s from the " +
                    "monitor backend because monitor entries may not contain " +
                    "multivalued RDNs");
    registerMessage(MSGID_MONITOR_NO_SUCH_PROVIDER,
                    "Unable to retrieve the requested entry from the monitor " +
                    "backend because there is no monitor provider \"%s\" " +
                    "registered with the Directory Server");
    registerMessage(MSGID_MONITOR_UPTIME,
                    "%d days %d hours %d minutes %d seconds");
 
 
    registerMessage(MSGID_SCHEMA_CONFIG_ENTRY_NULL,
                    "An attempt was made to configure the schema backend " +
                    "without providing a configuration entry.  This is not " +
                    "allowed, and no schema information will be available " +
                    "over protocol");
    registerMessage(MSGID_SCHEMA_DESCRIPTION_ENTRY_DN,
                    "Specifies the DN or set of DNs for the entries that may " +
                    "be retrieved in order to retrieve the Directory Server " +
                    "schema information.  Multiple values may be provided " +
                    "if the schema is to be available in multiple " +
                    "locations for compatibility purposes.  If no value is " +
                    "provided, a default of \"" + DN_DEFAULT_SCHEMA_ROOT +
                    "\" will be used");
    registerMessage(MSGID_SCHEMA_DESCRIPTION_SHOW_ALL_ATTRIBUTES,
                    "Indicates whether to treat attributes in the subschema " +
                    "entry as user attributes even if they are marked " +
                    "operational.  This may provide compatibility with some " +
                    "applications that expect schema attributes like " +
                    "attributeType and objectClasses to be included by " +
                    "default even if they are not requested.  Note that the " +
                    "ldapSyntaxes attribute will always be treated as " +
                    "operational in order to avoid problems with attempts to " +
                    "modify the schema over protocol");
    registerMessage(MSGID_SCHEMA_CANNOT_DETERMINE_BASE_DN,
                    "An error occurred while trying to determine the base " +
                    "DNs to use when publishing the Directory Server schema " +
                    "information, as specified in the " + ATTR_SCHEMA_ENTRY_DN +
                    " attribute of configuration entry %s:  %s.  The default " +
                    "schema base DN of " + DN_DEFAULT_SCHEMA_ROOT +
                    " will be used");
    registerMessage(MSGID_SCHEMA_CANNOT_DETERMINE_SHOW_ALL,
                    "An error occurred while trying to determine whether to " +
                    "treat all subschema entry attributes as user attributes " +
                    "regardless of the way they are defined in the schema, " +
                    "as specified in the " + ATTR_SCHEMA_SHOW_ALL_ATTRIBUTES +
                    " attribute of configuration entry %s:  %s.  The default " +
                    "behavior, which is to treat the attribute types as " +
                    "defined in the server schema, will be used");
    registerMessage(MSGID_SCHEMA_CANNOT_FIND_CONCAT_FILE,
                    "Unable to find a file containing concatenated schema " +
                    "element definitions in order to determine if any schema " +
                    "changes were made with the server offline.  The " +
                    "file was expected in the %s directory and should have " +
                    "been named either %s or %s");
    registerMessage(MSGID_SCHEMA_ERROR_DETERMINING_SCHEMA_CHANGES,
                    "An error occurred while attempting to determine whether " +
                    "any schema changes had been made by directly editing " +
                    "the schema files with the server offline:  %s");
    registerMessage(MSGID_SCHEMA_CANNOT_WRITE_CONCAT_SCHEMA_FILE,
                    "An error occurred while attempting to write file %s " +
                    "containing a concatenated list of all server schema " +
                    "elements:  %s.  The server may not be able to " +
                    "accurately identify any schema changes made with the " +
                    "server offline");
    registerMessage(MSGID_SCHEMA_ADD_NOT_SUPPORTED,
                    "Unwilling to add entry \"%s\" because add operations " +
                    "are not supported in the schema backend");
    registerMessage(MSGID_SCHEMA_DELETE_NOT_SUPPORTED,
                    "Unwilling to remove entry \"%s\" because delete " +
                    "operations are not supported in the schema backend");
    registerMessage(MSGID_SCHEMA_MODIFY_INSUFFICIENT_PRIVILEGES,
                    "You do not have sufficient privileges to modify the " +
                    "Directory Server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_NOT_SUPPORTED,
                    "Unwilling to update entry \"%s\" because modify " +
                    "operations are not yet supported in the schema " +
                    "backend.  If you wish to alter the contents of the base " +
                    "schema entry itself, then it may be possible to do so " +
                    "by modifying the \"%s\" entry in the configuration");
    registerMessage(MSGID_SCHEMA_DELETE_MODTYPE_NOT_SUPPORTED,
                    "The schema backend does not currently support removing " +
                    "existing schema elements");
    registerMessage(MSGID_SCHEMA_INVALID_MODIFICATION_TYPE,
                    "The schema backend does not support the %s modification " +
                    "type");
    registerMessage(MSGID_SCHEMA_MODIFY_UNSUPPORTED_ATTRIBUTE_TYPE,
                    "The schema backend does not support the modification of " +
                    "the %s attribute type.  Only attribute types, object " +
                    "classes, name forms, DIT content rules, DIT structure " +
                    "rules, and matching rule uses may be modified");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_DECODE_ATTRTYPE,
                    "An error occurred while attempting to decode the " +
                    "attribute type \"%s\":  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_ATTRTYPE_ALREADY_EXISTS,
                    "Unable to add attribute type  %s to the server schema " +
                    "because there is an existing attribute type with a " +
                    "conflicting name or OID:  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_DECODE_OBJECTCLASS,
                    "An error occurred while attempting to decode the object " +
                    "class \"%s\":  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_DECODE_NAME_FORM,
                    "An error occurred while attempting to decode the name " +
                    "form \"%s\":  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_DECODE_DCR,
                    "An error occurred while attempting to decode the DIT " +
                    "content rule \"%s\":  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_DECODE_DSR,
                    "An error occurred while attempting to decode the DIT " +
                    "structure rule \"%s\":  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_DECODE_MR_USE,
                    "An error occurred while attempting to decode the " +
                    "matching rule use \"%s\":  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_DELETE_NO_VALUES,
                    "The server will not allow removing all values for the " +
                    "%s attribute type in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_UNDEFINED_SUPERIOR_OBJECTCLASS,
                    "Unable to add objectclass %s because its superior " +
                    "class of %s is not defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_OC_UNDEFINED_REQUIRED_ATTR,
                    "Unable to add objectclass %s because it requires " +
                    "attribute %s which is not defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_OC_UNDEFINED_OPTIONAL_ATTR,
                    "Unable to add objectclass %s because it allows " +
                    "attribute %s which is not defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_OBJECTCLASS_ALREADY_EXISTS,
                    "Unable to add objectclass %s to the server schema " +
                    "because there is an existing objectclass with a " +
                    "conflicting name or OID:  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_READ_EXISTING_USER_SCHEMA,
                    "An error occurred while attempting to read the contents " +
                    "of schema file %s:  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_WRITE_NEW_SCHEMA,
                    "An error occurred while attepting to write the updated " +
                    "schema:  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_DN_NOT_SUPPORTED,
                    "Unwilling to rename entry \"%s\" because modify DN " +
                    "operations are not supported in the schema backend");
    registerMessage(MSGID_SCHEMA_UNABLE_TO_EXPORT_BASE,
                    "An error occurred while attempting to export the base " +
                    "schema entry:  %s");
    registerMessage(MSGID_SCHEMA_IMPORT_NOT_SUPPORTED,
                    "The schema backend does not support LDIF import " +
                    "operations");
    registerMessage(MSGID_SCHEMA_BACKUP_AND_RESTORE_NOT_SUPPORTED,
                    "The schema backend does not yet provide a facility for " +
                    "backup and restore operations");
    registerMessage(MSGID_SCHEMA_INVALID_BASE,
                    "Unable to retrieve the requested entry %s from the " +
                    "schema backend because the DN is equal to one of the " +
                    "schema entry DNs");
    registerMessage(MSGID_SCHEMA_UNABLE_TO_CREATE_LDIF_WRITER,
                    "An unexpected error occurred while trying to open the " +
                    "LDIF writer for the schema backend:  %s");
    registerMessage(MSGID_SCHEMA_DEREGISTERED_BASE_DN,
                    "Successfully deregistered DN %s so that it will no " +
                    "longer be available as a schema entry DN");
    registerMessage(MSGID_SCHEMA_CANNOT_DEREGISTER_BASE_DN,
                    "An error occurred while trying to deregister %s as a " +
                    "schema entry DN:  %s");
    registerMessage(MSGID_SCHEMA_REGISTERED_BASE_DN,
                    "Successfully registered DN %s as a new schema entry DN");
    registerMessage(MSGID_SCHEMA_CANNOT_REGISTER_BASE_DN,
                    "An error occurred while trying to register %s as a " +
                    "schema entry DN:  %s");
    registerMessage(MSGID_SCHEMA_USING_NEW_USER_ATTRS,
                    "The schema configuration has been updated so that it " +
                    "will now use a new set of user-defined attributes");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_GET_MAC,
                    "An error occurred while attempting to obtain the %s MAC " +
                    "provider to create the signed hash for the backup:  %s");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_GET_DIGEST,
                    "An error occurred while attempting to obtain the %s " +
                    "message digest to create the hash for the backup:  %s");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_CREATE_ARCHIVE_FILE,
                    "An error occurred while trying to create the schema " +
                    "archive file %s in directory %s:  %s");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_GET_CIPHER,
                    "An error occurred while attempting to obtain the %s " +
                    "cipher to use to encrypt the backup:  %s");
    registerMessage(MSGID_SCHEMA_BACKUP_ZIP_COMMENT,
                    "%s schema backup %s");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_LIST_SCHEMA_FILES,
                    "An error occurred while attempting to obtain a list " +
                    "of the files in directory %s to include in the schema " +
                    "backup:  %s");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_BACKUP_SCHEMA_FILE,
                    "An error occurred while attempting to back up schema " +
                    "file %s:  %s");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_CLOSE_ZIP_STREAM,
                    "An error occurred while trying to close the schema " +
                    "archive file %s in directory %s:  %s");
    registerMessage(MSGID_SCHEMA_BACKUP_CANNOT_UPDATE_BACKUP_DESCRIPTOR,
                    "An error occurred while attempting to update the backup " +
                    "descriptor file %s with information about the schema " +
                    "backup:  %s");
    registerMessage(MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_ATTRTYPE,
                    "Unable to add attribute type %s because it conflicts " +
                    "with multiple existing attribute types (%s and " +
                    "%s)");
    registerMessage(MSGID_SCHEMA_MODIFY_UNDEFINED_SUPERIOR_ATTRIBUTE_TYPE,
                    "Unable to add attribute type %s because it references " +
                    "superior attribute type %s which is not defined in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_OBJECTCLASS,
                    "Unable to add objectclass %s because it conflicts with " +
                    "multiple existing objectclasses (%s and %s)");
    registerMessage(MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_NAME_FORM,
                    "Unable to add name form %s because it conflicts with " +
                    "multiple existing name forms (%s and %s)");
    registerMessage(MSGID_SCHEMA_MODIFY_NF_UNDEFINED_STRUCTURAL_OC,
                    "Unable to add name form %s because it references " +
                    "structural objectclass %s which is not defined in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_NF_OC_NOT_STRUCTURAL,
                    "Unable to add name form %s because it references " +
                    "objectclass %s which is defined in the server schema " +
                    "but is not a structural objectclass");
    registerMessage(MSGID_SCHEMA_MODIFY_STRUCTURAL_OC_CONFLICT_FOR_ADD_NF,
                    "Unable to add name form %s because it references " +
                    "structural objectclass %s which is already associated " +
                    "with another name form %s");
    registerMessage(MSGID_SCHEMA_MODIFY_NF_UNDEFINED_REQUIRED_ATTR,
                    "Unable to add name form %s because it references " +
                    "required attribute type %s which is not defined in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_NF_UNDEFINED_OPTIONAL_ATTR,
                    "Unable to add name form %s because it references " +
                    "optional attribute type %s which is not defined in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_DCR,
                    "Unable to add DIT content rule %s because it conflicts " +
                    "with multiple existing DIT content rules (%s and %s)");
    registerMessage(MSGID_SCHEMA_MODIFY_STRUCTURAL_OC_CONFLICT_FOR_ADD_DCR,
                    "Unable to add DIT content rule %s because it " +
                    "references structural objectclass %s which is already " +
                    "associated with another DIT content rule %s");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_STRUCTURAL_OC,
                    "Unable to add DIT content rule %s because it " +
                    "references structural objectclass %s which is not " +
                    "defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_OC_NOT_STRUCTURAL,
                    "Unable to add DIT content rule %s because it " +
                    "references structural objectclass %s which is defined " +
                    "in the server schema but is not structural");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_AUXILIARY_OC,
                    "Unable to add DIT content rule %s because it " +
                    "references auxiliary objectclass %s which is not " +
                    "defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_REQUIRED_ATTR,
                    "Unable to add DIT content rule %s because it " +
                    "references required attribute type %s which is not " +
                    "defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_OPTIONAL_ATTR,
                    "Unable to add DIT content rule %s because it " +
                    "references optional attribute type %s which is not " +
                    "defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_UNDEFINED_PROHIBITED_ATTR,
                    "Unable to add DIT content rule %s because it " +
                    "references prohibited attribute type %s which is not " +
                    "defined in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_DSR,
                    "Unable to add DIT structure rule %s because it " +
                    "conflicts with multiple existing DIT structure rules " +
                    "(%s and %s)");
    registerMessage(MSGID_SCHEMA_MODIFY_NAME_FORM_CONFLICT_FOR_ADD_DSR,
                    "Unable to add DIT structure rule %s because it " +
                    "references name form %s which is already associated " +
                    "with another DIT structure rule %s");
    registerMessage(MSGID_SCHEMA_MODIFY_DSR_UNDEFINED_NAME_FORM,
                    "Unable to add DIT structure rule %s because it " +
                    "references name form %s which is not defined in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_MULTIPLE_CONFLICTS_FOR_ADD_MR_USE,
                    "Unable to add matching rule use %s because it " +
                    "conflicts with multiple existing matching rule uses " +
                    "(%s and %s)");
    registerMessage(MSGID_SCHEMA_MODIFY_MR_CONFLICT_FOR_ADD_MR_USE,
                    "Unable to add matching rule use %s because it " +
                    "references matching rule %s which is already associated " +
                    "with another matching rule use %s");
    registerMessage(MSGID_SCHEMA_MODIFY_MRU_UNDEFINED_ATTR,
                    "Unable to add matching rule use %s because it " +
                    "references attribute type %s which is not defined in " +
                    "the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_CIRCULAR_REFERENCE_AT,
                    "Circular reference detected for attribute type %s in " +
                    "which the superior type chain references the " +
                    "attribute type itself");
    registerMessage(MSGID_SCHEMA_MODIFY_CIRCULAR_REFERENCE_OC,
                    "Circular reference detected for objectclass %s in which " +
                    "the superior class chain references the objectclass " +
                    "itself");
    registerMessage(MSGID_SCHEMA_MODIFY_CIRCULAR_REFERENCE_DSR,
                    "Circular reference detected for DIT structure rule %s " +
                    "in which the superior rule chain references the DIT " +
                    "structure rule itself");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_WRITE_ORIG_FILES_CLEANED,
                    "An error occurred while attempting to create copies " +
                    "of the existing schema files before applying the " +
                    "updates:  %s.  The server was able to restore the " +
                    "original schema configuration, so no additional " +
                    "cleanup should be required");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_WRITE_ORIG_FILES_NOT_CLEANED,
                    "An error occurred while attempting to create copies " +
                    "of the existing schema files before applying the " +
                    "updates:  %s.  A problem also occurred when attempting " +
                    "to restore the original schema configuration, so the " +
                    "server may be left in an inconsistent state and could " +
                    "require manual cleanup");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_WRITE_NEW_FILES_RESTORED,
                    "An error occurred while attempting to write new " +
                    "versions of the server schema files:  %s.   The server " +
                    "was able to restore the original schema configuration, " +
                    "so no additional cleanup should be required");
    registerMessage(MSGID_SCHEMA_MODIFY_CANNOT_WRITE_NEW_FILES_NOT_RESTORED,
                    "An error occrred while attempting to write new " +
                    "versions of the server schema files:  %s.  A problem " +
                    "also occured when attempting to restore the original " +
                    "schema configuration, so the server may be left in an " +
                    "inconsistent state and could require manual cleanup");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_ATTRIBUTE_TYPE,
                    "Unable to remove attribute type %s from the server " +
                    "schema because no such attribute type is defined");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_AT_SUPERIOR_TYPE,
                    "Unable to remove attribute type %s from the server " +
                    "schema because it is referenced as the superior type " +
                    "for attribute type %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_OC,
                    "Unable to remove attribute type %s from the server " +
                    "schema because it is referenced as a required or " +
                    "optional attribute type in objectclass %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_NF,
                    "Unable to remove attribute type %s from the server " +
                    "schema because it is referenced as a required or " +
                    "optional attribute type in name form %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_DCR,
                    "Unable to remove attribute type %s from the server " +
                    "schema because it is referenced as a required, " +
                    "optional, or prohibited attribute type in DIT content " +
                    "rule %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_AT_IN_MR_USE,
                    "Unable to remove attribute type %s from the server " +
                    "schema because it is referenced by matching rule use %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_OBJECTCLASS,
                    "Unable to remove objectclass %s from the server schema " +
                    "because no such objectclass is defined");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_OC_SUPERIOR_CLASS,
                    "Unable to remove objectclass %s from the server schema " +
                    "because it is referenced as the superior class for " +
                    "objectclass %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_OC_IN_NF,
                    "Unable to remove objectclass %s from the server schema " +
                    "because it is referenced as the structural class for " +
                    "name form %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_OC_IN_DCR,
                    "Unable to remove objectclass %s from the server schema " +
                    "because it is referenced as a structural or auxiliary " +
                    "class for DIT content rule %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_NAME_FORM,
                    "Unable to remove name form %s from the server schema " +
                    "because no such name form is defined");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_NF_IN_DSR,
                    "Unable to remove name form %s from the server schema " +
                    "because it is referenced by DIT structure rule %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_DCR,
                    "Unable to remove DIT content rule %s from the server " +
                    "schema because no such DIT content rule is defined");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_DSR,
                    "Unable to remove DIT structure rule %s from the server " +
                    "schema because no such DIT structure rule is defined");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_DSR_SUPERIOR_RULE,
                    "Unable to remove DIT structure rule %s from the server " +
                    "schema because it is referenced as a superior rule for " +
                    "DIT structure rule %s");
    registerMessage(MSGID_SCHEMA_MODIFY_REMOVE_NO_SUCH_MR_USE,
                    "Unable to remove matching rule use %s from the server " +
                    "schema because no such matching rule use is defined");
    registerMessage(MSGID_SCHEMA_MODIFY_OBSOLETE_SUPERIOR_ATTRIBUTE_TYPE,
                    "Unable to add attribute type %s because the superior " +
                    "type %s is marked as OBSOLETE in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_ATTRTYPE_OBSOLETE_MR,
                    "Unable to add attribute type %s because the associated " +
                    "matching rule %s is marked as OBSOLETE in the server " +
                    "schema");
    registerMessage(MSGID_SCHEMA_MODIFY_OBSOLETE_SUPERIOR_OBJECTCLASS,
                    "Unable to add object class %s because the superior " +
                    "class %s is marked as OBSOLETE in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_OC_OBSOLETE_REQUIRED_ATTR,
                    "Unable to add object class %s because required " +
                    "attribute %s is marked as OBSOLETE in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_OC_OBSOLETE_OPTIONAL_ATTR,
                    "Unable to add object class %s because optional " +
                    "attribute %s is marked as OBSOLETE in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_NF_OC_OBSOLETE,
                    "Unable to add name form %s because its structural " +
                    "object class %s is marked as OBSOLETE in the server " +
                    "schema");
    registerMessage(MSGID_SCHEMA_MODIFY_NF_OBSOLETE_REQUIRED_ATTR,
                    "Unable to add name form %s because it requires " +
                    "attribute type %s which is marked as OBSOLETE in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_NF_OBSOLETE_OPTIONAL_ATTR,
                    "Unable to add name form %s because it allows " +
                    "attribute type %s which is marked as OBSOLETE in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_STRUCTURAL_OC_OBSOLETE,
                    "Unable to add DIT content rule %s because its " +
                    "structural object class %s is marked as OBSOLETE in " +
                    "the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_OC_NOT_AUXILIARY,
                    "Unable to add DIT content rule %s because it references " +
                    "auxiliary object class %s which is defined in the " +
                    "server schema but is not an auxiliary class");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_AUXILIARY_OC,
                    "Unable to add DIT content rule %s because it references " +
                    "auxiliary object class %s which is marked as OBSOLETE " +
                    "in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_AUXILIARY_OC_OBSOLETE,
                    "Unable to add DIT content rule %s because it allows " +
                    "auxiliary object class %s which is marked as OBSOLETE " +
                    "in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_REQUIRED_ATTR,
                    "Unable to add DIT content rule %s because it requires " +
                    "attribute type %s which is marked as OBSOLETE in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_OPTIONAL_ATTR,
                    "Unable to add DIT content rule %s because it allows " +
                    "attribute type %s which is marked as OBSOLETE in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DCR_OBSOLETE_PROHIBITED_ATTR,
                    "Unable to add DIT content rule %s because it prohibits " +
                    "attribute type %s which is marked as OBSOLETE in the " +
                    "server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DSR_OBSOLETE_NAME_FORM,
                    "Unable to add DIT structure rule %s because its name " +
                    "form %s is marked OBSOLETE in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_DSR_OBSOLETE_SUPERIOR_RULE,
                    "Unable to add DIT structure rule %s because it " +
                    "references superior rule %s whihc is marked as OBSOLETE " +
                    "in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_MRU_OBSOLETE_MR,
                    "Unable to add matching rule use %s because its matching " +
                    "rule %s is marked OBSOLETE in the server schema");
    registerMessage(MSGID_SCHEMA_MODIFY_MRU_OBSOLETE_ATTR,
                    "Unable to add matching rule use %s because it " +
                    "references attribute type %s which is marked as " +
                    "OBSOLETE in the server schema");
 
 
    registerMessage(MSGID_SCHEMA_RESTORE_NO_SUCH_BACKUP,
                    "Unable to restore or verify schema backup %s in " +
                    "directory %s because no such backup exists");
    registerMessage(MSGID_SCHEMA_RESTORE_NO_BACKUP_FILE,
                    "Unable to restore or verify schema backup %s in " +
                    "directory %s because the archive filename could not be " +
                    "determined");
    registerMessage(MSGID_SCHEMA_RESTORE_NO_SUCH_FILE,
                    "Unable to restore or verify schema backup %s because " +
                    "the specified archive file %s does not exist");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_CHECK_FOR_ARCHIVE,
                    "Unable to restore or verify schema backup %s because " +
                    "an error occurred while trying to determine whether " +
                    "backup archive %s exists:  %s");
    registerMessage(MSGID_SCHEMA_RESTORE_UNKNOWN_DIGEST,
                    "Unable to restore or verify schema backup %s because " +
                    "an unsigned hash of this backup is available but the " +
                    "server cannot determine the digest algorithm used to " +
                    "generate this hash");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_GET_DIGEST,
                    "Unable to restore or verify schema backup %s because " +
                    "it has an unsigned hash that uses an unknown or " +
                    "unsupported digest algorithm of %s");
    registerMessage(MSGID_SCHEMA_RESTORE_UNKNOWN_MAC,
                    "Unable to restore or verify schema backup %s because " +
                    "a signed hash of this backup is available but the " +
                    "server cannot determine the MAC algorithm used to " +
                    "generate this hash");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_GET_MAC,
                    "Unable to restore or verify schema backup %s because " +
                    "it has a signed hash that uses an unknown or " +
                    "unsupported MAC algorithm of %s");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_OPEN_BACKUP_FILE,
                    "Unable to restore or verify schema backup %s because " +
                    "an error occurred while attempting to open the backup " +
                    "archive file %s:  %s");
    registerMessage(MSGID_SCHEMA_RESTORE_UNKNOWN_CIPHER,
                    "Unable to restore or verify schema backup %s because " +
                    "it is encrypted but the server cannot determine the " +
                    "cipher used to perform this encryption");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_GET_CIPHER,
                    "Unable to restore or verify schema backup %s because " +
                    "it is encrypted using an unknown or unsupported cipher " +
                    "of %s");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_RENAME_CURRENT_DIRECTORY,
                    "Unable to restore schema backup %s because an error " +
                    "occurred while attempting to rename the current " +
                    "schema directory from %s to %s:  %s");
    registerMessage(MSGID_SCHEMA_RESTORE_RESTORED_OLD_SCHEMA,
                    "An error occurred that prevented the schema backup from " +
                    "being properly restored.  However, the original schema " +
                    "files that were in place before the start of the " +
                    "restore process have been preserved and are now in " +
                    "their original location of %s");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_RESTORE_OLD_SCHEMA,
                    "An error occurred that prevented the schema backup from " +
                    "being properly restored.  The original schema files " +
                    "that were in place before the start of the restore " +
                    "process have been preserved and are contained in the %s " +
                    "directory");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_CREATE_SCHEMA_DIRECTORY,
                    "Unable to restore schema backup %s because an error " +
                    "occurred while attempting to create a new empty " +
                    "directory %s into which the files should be restored:  " +
                    "%s");
    registerMessage(MSGID_SCHEMA_RESTORE_OLD_SCHEMA_SAVED,
                    "An error occurred that prevented the schema backup from " +
                    "being properly restored.  The original schema files " +
                    "that were in place before the start of the restore " +
                    "process have been preserved in the %s directory");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_GET_ZIP_ENTRY,
                    "Unable to restore or verify schema backup %s because " +
                    "an error occurred while trying to read the next entry " +
                    "from the archive file %s:  %s");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_CREATE_FILE,
                    "Unable to restore schema backup %s because an error " +
                    "occurred while trying to recreate file %s:  %s");
    registerMessage(MSGID_SCHEMA_RESTORE_CANNOT_PROCESS_ARCHIVE_FILE,
                    "Unable to restore or verify schema backup %s because " +
                    "an error occurred while processing archived file %s:  " +
                    "%s");
    registerMessage(MSGID_SCHEMA_RESTORE_ERROR_ON_ZIP_STREAM_CLOSE,
                    "Unable to restore or verify schema backup %s because an " +
                    "unexpected error occurred while trying to close the " +
                    "archive file %s:  %s");
    registerMessage(MSGID_SCHEMA_RESTORE_UNSIGNED_HASH_VALID,
                    "The message digest calculated from the backup archive " +
                    "matches the digest stored with the backup information");
    registerMessage(MSGID_SCHEMA_RESTORE_UNSIGNED_HASH_INVALID,
                    "Unable to restore or verify schema backup %s because " +
                    "the message digest calculated from the backup archive " +
                    "does not match the digest stored with the backup " +
                    "information");
    registerMessage(MSGID_SCHEMA_RESTORE_SIGNED_HASH_VALID,
                    "The signed digest calculated from the backup archive " +
                    "matches the signature stored with the backup " +
                    "information");
    registerMessage(MSGID_SCHEMA_RESTORE_SIGNED_HASH_INVALID,
                    "Unable to restore or verify schema backup %s because " +
                    "the signed digest calculated from the backup archive " +
                    "does not match the signature stored with the backup " +
                    "information");
    registerMessage(MSGID_SCHEMA_RESTORE_VERIFY_SUCCESSFUL,
                    "All tests performed on schema backup %s from directory " +
                    "%s show that the archive appears to be valid");
    registerMessage(MSGID_SCHEMA_RESTORE_SUCCESSFUL,
                    "Schema backup %s was successfully restored from the " +
                    "archive in directory %s");
 
 
    registerMessage(MSGID_TASK_INVALID_STATE,
                    "The task defined in entry %s is invalid because it has " +
                    "an invalid state %s");
    registerMessage(MSGID_TASK_CANNOT_PARSE_SCHEDULED_START_TIME,
                    "An error occurred while trying to parse the scheduled " +
                    "start time value %s from task entry %s");
    registerMessage(MSGID_TASK_CANNOT_PARSE_ACTUAL_START_TIME,
                    "An error occurred while trying to parse the actual " +
                    "start time value %s from task entry %s");
    registerMessage(MSGID_TASK_CANNOT_PARSE_COMPLETION_TIME,
                    "An error occurred while trying to parse the completion " +
                    "time value %s from task entry %s");
    registerMessage(MSGID_TASK_MISSING_ATTR,
                    "Task entry %s is missing required attribute %s");
    registerMessage(MSGID_TASK_MULTIPLE_ATTRS_FOR_TYPE,
                    "There are multiple instances of attribute %s in task " +
                    "entry %s");
    registerMessage(MSGID_TASK_NO_VALUES_FOR_ATTR,
                    "There are no values for attribute %s in task entry %s");
    registerMessage(MSGID_TASK_MULTIPLE_VALUES_FOR_ATTR,
                    "There are multiple values for attribute %s in task " +
                    "entry %s");
    registerMessage(MSGID_TASK_EXECUTE_FAILED,
                    "An error occurred while executing the task defined in " +
                    "entry %s:  %s");
 
 
    registerMessage(MSGID_RECURRINGTASK_NO_ID_ATTRIBUTE,
                    "The provided recurring task entry does not contain " +
                    "attribute %s which is needed to hold the recurring task " +
                    "ID");
    registerMessage(MSGID_RECURRINGTASK_MULTIPLE_ID_TYPES,
                    "The provided recurring task entry contains multiple " +
                    "attributes with type %s, which is used to hold the " +
                    "recurring task ID, but only a single instance is " +
                    "allowed");
    registerMessage(MSGID_RECURRINGTASK_NO_ID,
                    "The provided recurring task entry does not contain any " +
                    "values for the %s attribute, which is used to specify " +
                    "the recurring task ID");
    registerMessage(MSGID_RECURRINGTASK_MULTIPLE_ID_VALUES,
                    "The provided recurring task entry contains multiple " +
                    "values for the %s attribute, which is used to specify " +
                    "the recurring task ID, but only a single value is " +
                    "allowed");
    registerMessage(MSGID_RECURRINGTASK_NO_CLASS_ATTRIBUTE,
                    "The provided recurring task entry does not contain " +
                    "attribute %s which is needed to specify the " +
                    "fully-qualified name of the class providing the task " +
                    "logic");
    registerMessage(MSGID_RECURRINGTASK_MULTIPLE_CLASS_TYPES,
                    "The provided recurring task entry contains multiple " +
                    "attributes with type %s, which is used to hold the " +
                    "task class name, but only a single instance is allowed");
    registerMessage(MSGID_RECURRINGTASK_NO_CLASS_VALUES,
                    "The provided recurring task entry does not contain any " +
                    "values for the %s attribute, which is used to specify " +
                    "the fully-qualified name of the class providing the " +
                    "task logic");
    registerMessage(MSGID_RECURRINGTASK_MULTIPLE_CLASS_VALUES,
                    "The provided recurring task entry contains multiple " +
                    "values for the %s attribute, which is used to specify " +
                    "the task class name, but only a single value is allowed");
    registerMessage(MSGID_RECURRINGTASK_CANNOT_LOAD_CLASS,
                    "An error occurred while attempting to load class %s " +
                    "specified in attribute %s of the provided recurring " +
                    "task entry:  %s.  Does this class exist in the " +
                    "Directory Server classpath?");
    registerMessage(MSGID_RECURRINGTASK_CANNOT_INSTANTIATE_CLASS_AS_TASK,
                    "An error occurred while trying to create an instance " +
                    "of class %s as a Directory Server task.  Is this class " +
                    "a subclass of %s?");
    registerMessage(MSGID_RECURRINGTASK_CANNOT_INITIALIZE_INTERNAL,
                    "An error occurred while attempting to perform internal " +
                    "initialization on an instance of class %s with the " +
                    "information contained in the provided entry:  %s");
 
 
    registerMessage(MSGID_TASKBE_CONFIG_ENTRY_NULL,
                    "The configuration entry provided when attempting to " +
                    "initialize the task backend was null");
    registerMessage(MSGID_TASKBE_NO_BASE_DNS,
                    "The task backend configuration entry does not contain " +
                    "any base DNs.  There must be exactly one base DN for " +
                    "task information in the Directory Server");
    registerMessage(MSGID_TASKBE_MULTIPLE_BASE_DNS,
                    "The task backend configuration entry contains multiple " +
                    "base DNs.  There must be exactly one base DN for task " +
                    "information in the Directory Server");
    registerMessage(MSGID_TASKBE_CANNOT_DECODE_RECURRING_TASK_BASE_DN,
                    "An error occurred while attempting to decode recurring " +
                    "task base %s as a DN:  %s");
    registerMessage(MSGID_TASKBE_CANNOT_DECODE_SCHEDULED_TASK_BASE_DN,
                    "An error occurred while attempting to decode scheduled " +
                    "task base %s as a DN:  %s");
    registerMessage(MSGID_TASKBE_DESCRIPTION_RETENTION_TIME,
                    "Specifies the length of time in seconds that task " +
                    "information should be retained after processing on that " +
                    "task has completed.  Once this period has passed, the " +
                    "task information will be automatically removed to " +
                    "conserve memory and disk space");
    registerMessage(MSGID_TASKBE_CANNOT_INITIALIZE_RETENTION_TIME,
                    "An unexpected error occurred while attempting to " +
                    "initialize the task retention time configuration:  %s");
    registerMessage(MSGID_TASKBE_DESCRIPTION_BACKING_FILE,
                    "Specifies the path to the backing file for the task " +
                    "backend.  This LDIF file will hold all the " +
                    "configuration for the defined scheduled tasks and " +
                    "recurring tasks");
    registerMessage(MSGID_TASKBE_CANNOT_INITIALIZE_BACKING_FILE,
                    "An unexpected error occurred while attempting to " +
                    "initialize the task backing file configuration:  %s");
    registerMessage(MSGID_TASKBE_NO_BACKING_FILE,
                    "The updated configuration entry does not have a value " +
                    "for the required %s attribute, which specifies the " +
                    "path to the task data backing file");
    registerMessage(MSGID_TASKBE_BACKING_FILE_EXISTS,
                    "The specified task data backing file %s already exists " +
                    "and the Directory Server will not attempt to overwrite " +
                    "it.  Please delete or rename the existing file before " +
                    "attempting to use that path for the new backing file, " +
                    "or choose a new path");
    registerMessage(MSGID_TASKBE_INVALID_BACKING_FILE_PATH,
                    "The specified path %s for the new task data backing " +
                    "file appears to be an invalid path.  Please choose a " +
                    "new path for the task data backing file");
    registerMessage(MSGID_TASKBE_BACKING_FILE_MISSING_PARENT,
                    "The parent directory %s for the new task data backing " +
                    "file %s does not exist.  Please create this directory " +
                    "before attempting to use this path for the new backing " +
                    "file or choose a new path");
    registerMessage(MSGID_TASKBE_BACKING_FILE_PARENT_NOT_DIRECTORY,
                    "The parent directory %s for the new task data backing " +
                    "file %s exists but is not a directory.  Please choose a " +
                    "new path for the task data backing file");
    registerMessage(MSGID_TASKBE_ERROR_GETTING_BACKING_FILE,
                    "An error occurred while attempting to determine the " +
                    "new path to the task data backing file:  %s");
    registerMessage(MSGID_TASKBE_NO_RETENTION_TIME,
                    "The updated configuration entry does not have a value " +
                    "for the required %s attribute, which specifies the " +
                    "length of time in seconds that information about " +
                    "completed tasks should be retained before they are " +
                    "cleaned up");
    registerMessage(MSGID_TASKBE_ERROR_GETTING_RETENTION_TIME,
                    "An error occurred while attempting to determine the " +
                    "completed task retention time:  %s");
    registerMessage(MSGID_TASKBE_UPDATED_RETENTION_TIME,
                    "The completed task retention time has been updated to " +
                    "%d seconds.  This will take effect immediately");
    registerMessage(MSGID_TASKBE_UPDATED_BACKING_FILE,
                    "The path to the task data backing file has been changed " +
                    "to %s.  A snapshot of the current task configuration " +
                    "has been written to that file and it will continue to " +
                    "be used for future updates");
    registerMessage(MSGID_TASKBE_ADD_DISALLOWED_DN,
                    "New entries in the task backend may only be added " +
                    "immediately below %s for scheduled tasks or immediately " +
                    "below %s for recurring tasks");
    registerMessage(MSGID_TASKBE_DELETE_INVALID_ENTRY,
                    "Unable to remove entry %s from the task backend because " +
                    "its DN is either not appropriate for that backend or it " +
                    "is not below the scheduled or recurring tasks base entry");
    registerMessage(MSGID_TASKBE_DELETE_NO_SUCH_TASK,
                    "Unable to remove entry %s from the task backend because " +
                    "there is no scheduled task associated with that entry " +
                    "DN");
    registerMessage(MSGID_TASKBE_DELETE_RUNNING,
                    "Unable to delete entry %s from the task backend because " +
                    "the associated task is currently running");
    registerMessage(MSGID_TASKBE_DELETE_NO_SUCH_RECURRING_TASK,
                    "Unable to remove entry %s from the task backend because " +
                    "there is no recurring task associated with that entry " +
                    "DN");
    registerMessage(MSGID_TASKBE_MODIFY_DN_NOT_SUPPORTED,
                    "Modify DN operations are not supported in the task " +
                    "backend");
    registerMessage(MSGID_TASKBE_SEARCH_INVALID_BASE,
                    "Unable to process the search operation in the task " +
                    "backend because the provided base DN %s is not valid " +
                    "for entries in the task backend");
    registerMessage(MSGID_TASKBE_SEARCH_NO_SUCH_TASK,
                    "Unable to process the search operation in the task " +
                    "backend because there is no scheduled task associated " +
                    "with the provided search base entry %s");
    registerMessage(MSGID_TASKBE_SEARCH_NO_SUCH_RECURRING_TASK,
                    "Unable to process the search operation in the task " +
                    "backend because there is no recurring task associated " +
                    "with the provided search base entry %s");
    registerMessage(MSGID_TASKBE_BACKING_FILE_HEADER,
                    "This file contains the data used by the Directory " +
                    "Server task scheduler backend.  Do not edit this file " +
                    "directly, as there is a risk that those changes will be " +
                    "lost.  Scheculed and recurring task definitions should " +
                    "only be edited using the administration utilities " +
                    "provided with the Directory Server");
    registerMessage(MSGID_TASKBE_IMPORT_NOT_SUPPORTED,
                    "The task backend does not support LDIF import " +
                    "operations");
    registerMessage(MSGID_TASKBE_INTERRUPTED_BY_SHUTDOWN,
                    "The tasks backend is being shut down");
 
 
    registerMessage(MSGID_TASKSCHED_DUPLICATE_RECURRING_ID,
                    "Unable to add recurring task %s to the task scheduler " +
                    "because another recurring task already exists with the " +
                    "same ID");
    registerMessage(MSGID_TASKSCHED_REMOVE_RECURRING_EXISTING_ITERATION,
                    "Unable to remove recurring task %s because there is " +
                    "already a scheduled iteration of that task with ID %s " +
                    "that must be removed first");
    registerMessage(MSGID_TASKSCHED_REMOVE_PENDING_NO_SUCH_TASK,
                    "Unable to remove pending task %s because no such task " +
                    "exists");
    registerMessage(MSGID_TASKSCHED_REMOVE_PENDING_NOT_PENDING,
                    "Unable to remove pending task %s because the task is " +
                    "no longer pending");
    registerMessage(MSGID_TASKSCHED_REMOVE_COMPLETED_NO_SUCH_TASK,
                    "Unable to remove completed task %s because no such " +
                    "task exists in the list of completed tasks");
    registerMessage(MSGID_TASKSCHED_DUPLICATE_TASK_ID,
                    "Unable to schedule task %s because another task already " +
                    "exists with the same ID");
    registerMessage(MSGID_TASKSCHED_CANNOT_FIND_RECURRING_TASK,
                    "Task %s has completed processing and indicates that it " +
                    "is associated with recurring task %s but no recurring " +
                    "task with that ID is currently defined so it is not " +
                    "possible to schedule the next iteration");
    registerMessage(MSGID_TASKSCHED_ERROR_SCHEDULING_RECURRING_ITERATION,
                    "An error occurred while attempting to schedule the next " +
                    "iteration of recurring task %s:  %s");
    registerMessage(MSGID_TASKSCHED_CANNOT_PARSE_ENTRY_RECOVERABLE,
                    "An error occurred while attempting to read an entry " +
                    "from the tasks backing file %s on or near line %d:  " +
                    "%s.  This is not a fatal error, so the task scheduler " +
                    "will attempt to continue parsing the file and schedule " +
                    "any additional tasks that it contains");
    registerMessage(MSGID_TASKSCHED_CANNOT_PARSE_ENTRY_FATAL,
                    "An error occurred while attempting to read an entry " +
                    "from the tasks backing file %s on or near line %d:  " +
                    "%s.  This is an unrecoverable error, and parsing " +
                    "cannot continue");
    registerMessage(MSGID_TASKSCHED_ENTRY_HAS_NO_PARENT,
                    "Entry %s read from the tasks backing file is invalid " +
                    "because it has no parent and does not match the task " +
                    "root DN of %s");
    registerMessage(MSGID_TASKSCHED_CANNOT_SCHEDULE_RECURRING_TASK_FROM_ENTRY,
                    "An error occurred while attempting to parse entry %s " +
                    "as a recurring task and add it to the scheduler:  %s");
    registerMessage(MSGID_TASKSCHED_CANNOT_SCHEDULE_TASK_FROM_ENTRY,
                    "An error occurred while attempting to parse entry %s " +
                    "as a task and add it to the scheduler:  %s");
    registerMessage(MSGID_TASKSCHED_INVALID_TASK_ENTRY_DN,
                    "Entry %s read from the tasks backing file %s has a DN " +
                    "which is not valid for a task or recurring task " +
                    "definition and will be ignored");
    registerMessage(MSGID_TASKSCHED_ERROR_READING_TASK_BACKING_FILE,
                    "An error occurred while attempting to read from the " +
                    "tasks data backing file %s:  %s");
    registerMessage(MSGID_TASKSCHED_CANNOT_CREATE_BACKING_FILE,
                    "An error occurred while attempting to create a new " +
                    "tasks backing file %s for use with the task " +
                    "scheduler:  %s");
    registerMessage(MSGID_TASKSCHED_NO_CLASS_ATTRIBUTE,
                    "The provided task entry does not contain attribute %s " +
                    "which is needed to specify the fully-qualified name of " +
                    "the class providing the task logic");
    registerMessage(MSGID_TASKSCHED_MULTIPLE_CLASS_TYPES,
                    "The provided task entry contains multiple attributes " +
                    "with type %s, which is used to hold the task class " +
                    "name, but only a single instance is allowed");
    registerMessage(MSGID_TASKSCHED_NO_CLASS_VALUES,
                    "The provided task entry does not contain any values for " +
                    "the %s attribute, which is used to specify the " +
                    "fully-qualified name of the class providing the task " +
                    "logic");
    registerMessage(MSGID_TASKSCHED_MULTIPLE_CLASS_VALUES,
                    "The provided task entry contains multiple values for " +
                    "the %s attribute, which is used to specify the task " +
                    "class name, but only a single value is allowed");
    registerMessage(MSGID_TASKSCHED_CANNOT_LOAD_CLASS,
                    "An error occurred while attempting to load class %s " +
                    "specified in attribute %s of the provided task entry:  " +
                    "%s.  Does this class exist in the Directory Server " +
                    "classpath?");
    registerMessage(MSGID_TASKSCHED_CANNOT_INSTANTIATE_CLASS_AS_TASK,
                    "An error occurred while trying to create an instance " +
                    "of class %s as a Directory Server task.  Is this class " +
                    "a subclass of %s?");
    registerMessage(MSGID_TASKSCHED_CANNOT_INITIALIZE_INTERNAL,
                    "An error occurred while attempting to perform internal " +
                    "initialization on an instance of class %s with the " +
                    "information contained in the provided entry:  %s");
    registerMessage(MSGID_TASKSCHED_CANNOT_RENAME_CURRENT_BACKING_FILE,
                    "An error occurred while attempting to rename the " +
                    "current tasks backing file from %s to %s:  %s.  The " +
                    "previous task configuration (which does not reflect the " +
                    "latest update) may be lost");
    registerMessage(MSGID_TASKSCHED_CANNOT_RENAME_NEW_BACKING_FILE,
                    "An error occurred while attempting to rename the " +
                    "new tasks backing file from %s to %s:  %s.  If the " +
                    "Directory Server is restarted, then the task scheduler " +
                    "may not be able to ");
    registerMessage(MSGID_TASKSCHED_CANNOT_WRITE_BACKING_FILE,
                    "An error occurred while attempting to write the new " +
                    "tasks data backing file %s:  %s.  Configuration " +
                    "information reflecting the latest update may be lost");
 
 
    registerMessage(MSGID_BACKUP_CONFIG_ENTRY_NULL,
                    "Unable to initialize the backup backend because the " +
                    "provided configuration entry is null");
    registerMessage(MSGID_BACKUP_CANNOT_DECODE_BACKUP_ROOT_DN,
                    "Unable to initialize the backup backend because an " +
                    "error occurred while attempting to decode the base DN " +
                    "for the backend:  %s");
    registerMessage(MSGID_BACKUP_DESCRIPTION_BACKUP_DIR_LIST,
                    "Specifies the set of directories that will be accessed " +
                    "by default for search operations in the backup " +
                    "backend.  Backup directories not in this list may still " +
                    "be accessed by directly specifying the backup directory " +
                    "in the search base DN.  Changes to this configuration " +
                    "attribute will take effect immediately");
    registerMessage(MSGID_BACKUP_CANNOT_DETERMINE_BACKUP_DIR_LIST,
                    "An error occurred while attempting to determine the " +
                    "backup directory list:  %s.  Initialization of the " +
                    "backup backend cannot continue");
    registerMessage(MSGID_BACKUP_GET_ENTRY_NULL,
                    "Unable to retrieve an entry from the backup backend " +
                    "because the requested entry was null");
    registerMessage(MSGID_BACKUP_INVALID_BASE,
                    "Requested entry %s does not exist in the backup backend");
    registerMessage(MSGID_BACKUP_DN_DOES_NOT_SPECIFY_DIRECTORY,
                    "Unable to retrieve entry %s from the backup backend " +
                    "because the requested DN is one level below the " +
                    "base DN but does not specify a backup directory");
    registerMessage(MSGID_BACKUP_INVALID_BACKUP_DIRECTORY,
                    "Unable to retrieve entry %s from the backup backend " +
                    "because the requested backup directory is invalid:  %s");
    registerMessage(MSGID_BACKUP_ERROR_GETTING_BACKUP_DIRECTORY,
                    "An error occurred while attempting to examine the " +
                    "requested backup directory:  %s");
    registerMessage(MSGID_BACKUP_NO_BACKUP_ID_IN_DN,
                    "Unable to retrieve entry %s from the backup backend " +
                    "because the requested DN is two levels below the " +
                    "base DN but does not specify a backup ID");
    registerMessage(MSGID_BACKUP_NO_BACKUP_PARENT_DN,
                    "Unable to retrieve entry %s from the backup backend " +
                    "because it does not have a parent");
    registerMessage(MSGID_BACKUP_NO_BACKUP_DIR_IN_DN,
                    "Unable to retrieve entry %s from the backup backend " +
                    "because the DN does not contain the backup directory " +
                    "in which the requested backup should reside");
    registerMessage(MSGID_BACKUP_NO_SUCH_BACKUP,
                    "Backup %s does not exist in backup directory %s");
    registerMessage(MSGID_BACKUP_ADD_NOT_SUPPORTED,
                    "Add operations are not supported in the backup backend");
    registerMessage(MSGID_BACKUP_DELETE_NOT_SUPPORTED,
                    "Delete operations are not supported in the backup " +
                    "backend");
    registerMessage(MSGID_BACKUP_MODIFY_NOT_SUPPORTED,
                    "Modify operations are not supported in the backup " +
                    "backend");
    registerMessage(MSGID_BACKUP_MODIFY_DN_NOT_SUPPORTED,
                    "Modify DN operations are not supported in the backup " +
                    "backend");
    registerMessage(MSGID_BACKUP_NO_SUCH_ENTRY,
                    "The requested entry %s does not exist in the backup " +
                    "backend");
    registerMessage(MSGID_BACKUP_EXPORT_NOT_SUPPORTED,
                    "LDIF export operations are not supported in the backup " +
                    "backend");
    registerMessage(MSGID_BACKUP_IMPORT_NOT_SUPPORTED,
                    "LDIF import operations are not supported in the backup " +
                    "backend");
    registerMessage(MSGID_BACKUP_BACKUP_AND_RESTORE_NOT_SUPPORTED,
                    "Backup and restore operations are not supported in " +
                    "the backup backend");
 
 
    registerMessage(MSGID_MEMORYBACKEND_REQUIRE_EXACTLY_ONE_BASE,
                    "Exactly one base DN must be provided for use with the " +
                    "memory-based backend");
    registerMessage(MSGID_MEMORYBACKEND_ENTRY_ALREADY_EXISTS,
                    "Entry %s already exists in the memory-based backend");
    registerMessage(MSGID_MEMORYBACKEND_ENTRY_DOESNT_BELONG,
                    "Entry %s does not belong in the memory-based backend");
    registerMessage(MSGID_MEMORYBACKEND_PARENT_DOESNT_EXIST,
                    "Unable to add entry %s because its parent entry %s does " +
                    "not exist in the memory-based backend");
    registerMessage(MSGID_MEMORYBACKEND_ENTRY_DOESNT_EXIST,
                    "Entry %s does not exist in the memory-based backend");
    registerMessage(MSGID_MEMORYBACKEND_CANNOT_DELETE_ENTRY_WITH_CHILDREN,
                    "Cannot delete entry %s because it has one or more " +
                    "subordinate entries");
    registerMessage(MSGID_MEMORYBACKEND_MODDN_NOT_SUPPORTED,
                    "Modify DN operations are not supported in the " +
                    "memory-based backend");
    registerMessage(MSGID_MEMORYBACKEND_CANNOT_CREATE_LDIF_WRITER,
                    "Unable to create an LDIF writer:  %s");
    registerMessage(MSGID_MEMORYBACKEND_CANNOT_WRITE_ENTRY_TO_LDIF,
                    "Cannot write entry %s to LDIF:  %s");
    registerMessage(MSGID_MEMORYBACKEND_CANNOT_CREATE_LDIF_READER,
                    "Unable to create an LDIF reader:  %s");
    registerMessage(MSGID_MEMORYBACKEND_ERROR_READING_LDIF,
                    "An unrecoverable error occurred while reading from " +
                    "LDIF:  %s");
    registerMessage(MSGID_MEMORYBACKEND_ERROR_DURING_IMPORT,
                    "An unexpected error occurred while processing the " +
                    "import:  %s");
    registerMessage(MSGID_MEMORYBACKEND_BACKUP_RESTORE_NOT_SUPPORTED,
                    "The memory-based backend does not support backup or " +
                    "restore operations");
    registerMessage(MSGID_MEMORYBACKEND_CANNOT_RENAME_ENRY_WITH_CHILDREN,
                    "Cannot rename entry %s because it has one or more " +
                    "subordinate entries");
    registerMessage(MSGID_MEMORYBACKEND_CANNOT_RENAME_TO_ANOTHER_BACKEND,
                    "Cannot rename entry %s because the target entry is in a " +
                    "different backend");
    registerMessage(MSGID_MEMORYBACKEND_RENAME_PARENT_DOESNT_EXIST,
                    "Cannot rename entry %s because the new parent entry %s " +
                    "doesn't exist");
  }
}