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

opends
28.11.2006 eda79366f0bdacebb6fca64c8e472538c9b16798
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
/*
 * 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 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;
 
 
 
  /**
   * 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_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_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_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_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_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_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_SCHEDULED_START_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.");
  }
}