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

neil_a_wilson
02.32.2006 48e73e27e5a6b254471fabeefa3a197dd071c1b8
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
/*
 * 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 Directory Server plugins that are provided with the
 * server itself.  Messages for third-party plugins should not be defined in
 * this class.
 */
public class PluginMessages
{
  /**
   * The message ID for the message that will be used if an attempt is made to
   * initialize a plugin with a null configuration entry.  This takes a single
   * argument, which is the class name of the plugin that could not be
   * initialized.
   */
  public static final int MSGID_PLUGIN_NULL_CONFIG_ENTRY =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 1;
 
 
 
  /**
   * The message ID for the message that will be used to retrieve the
   * description of the shutdown password configuration attribute.  This does
   * not take any arguments.
   */
  public static final int MSGID_PLUGIN_DESCRIPTION_SHUTDOWN_PASSWORD =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 2;
 
 
 
  /**
   * The message ID for the message that will be used if the LDAP ADList plugin
   * is not configured with any plugin types.  This takes a single argument,
   * which is the DN of the configuration entry.
   */
  public static final int MSGID_PLUGIN_ADLIST_NO_PLUGIN_TYPES =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 3;
 
 
 
  /**
   * The message ID for the message that will be used if the LDAP ADList plugin
   * is configured with an invalid plugin type.  This takes two arguments,
   * which are the DN of the configuration entry, and the invalid plugin type.
   */
  public static final int MSGID_PLUGIN_ADLIST_INVALID_PLUGIN_TYPE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 4;
 
 
 
  /**
   * The message ID for the message that will be used if the Directory Server
   * profiler plugin is not configured with any plugin types.  This takes a
   * single argument, which is the DN of the configuration entry.
   */
  public static final int MSGID_PLUGIN_PROFILER_NO_PLUGIN_TYPES =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 5;
 
 
 
  /**
   * The message ID for the message that will be used if the Directory Server
   * profiler plugin is configured with an invalid plugin type.  This takes two
   * arguments, which are the DN of the configuration entry, and the invalid
   * plugin type.
   */
  public static final int MSGID_PLUGIN_PROFILER_INVALID_PLUGIN_TYPE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 6;
 
 
 
  /**
   * The message ID for the message that will be used as the description for
   * the profile directory configuration attribute.  This does not take any
   * arguments.
   */
  public static final int MSGID_PLUGIN_PROFILER_DESCRIPTION_PROFILE_DIR =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 7;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the path to the profile directory.  This takes three
   * arguments, which are the DN of the configuration entry, a string
   * representation of the exception that was caught, and the path to the
   * default profile directory that will be used.
   */
  public static final int MSGID_PLUGIN_PROFILER_CANNOT_DETERMINE_PROFILE_DIR =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_WARNING | 8;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to write the profiled capture data.  This takes two arguments, which
   * are the path to the file that was to be written and a string representation
   * of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_PROFILER_CANNOT_WRITE_PROFILE_DATA =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 9;
 
 
 
  /**
   * The message ID for the message that will be used as the description for
   * the profile autostart attribute.  This does not take any arguments.
   */
  public static final int MSGID_PLUGIN_PROFILER_DESCRIPTION_AUTOSTART =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 10;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine whether to automatically start profiling.  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_PLUGIN_PROFILER_CANNOT_DETERMINE_AUTOSTART =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_WARNING | 11;
 
 
 
  /**
   * The message ID for the message that will be used as the description for
   * the profile sample interval attribute.  This does not take any arguments.
   */
  public static final int MSGID_PLUGIN_PROFILER_DESCRIPTION_INTERVAL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 12;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the profiler sample interval.  This takes three
   * arguments, which are the DN of the configuration entry, and a string
   * representation of the exception that was caught, and the default sample
   * interval that will be used.
   */
  public static final int MSGID_PLUGIN_PROFILER_CANNOT_DETERMINE_INTERVAL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_WARNING | 13;
 
 
 
  /**
   * The message ID for the message that will be used as the description for
   * the profiler state attribute.  This does not take any arguments.
   */
  public static final int MSGID_PLUGIN_PROFILER_DESCRIPTION_STATE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 14;
 
 
 
  /**
   * The message ID for the message that will be used as the description for
   * the profiler action attribute.  This does not take any arguments.
   */
  public static final int MSGID_PLUGIN_PROFILER_DESCRIPTION_ACTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 15;
 
 
 
  /**
   * The message ID for the message that will be used if an invalid profile
   * directory is specified.  This takes two arguments, which are the specified
   * profile directory and the DN of the configuration entry.
   */
  public static final int MSGID_PLUGIN_PROFILER_INVALID_PROFILE_DIR =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_WARNING | 16;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to determine the profiler action that should be taken.  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_PLUGIN_PROFILER_CANNOT_DETERMINE_ACTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_WARNING | 17;
 
 
 
  /**
   * The message ID for the message that will be used if the profiler sample
   * interval is changed.  This takes two arguments, which are the DN of the
   * configuration entry and the new sample interval that has been specified.
   */
  public static final int MSGID_PLUGIN_PROFILER_UPDATED_INTERVAL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 18;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to update the profiler sample interval.  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_PLUGIN_PROFILER_CANNOT_UPDATE_INTERVAL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 19;
 
 
 
  /**
   * The message ID for the message that will be used if the profiler capture
   * directory is changed.  This takes two arguments, which are the DN of the
   * configuration entry and the new profile directory that has been specified.
   */
  public static final int MSGID_PLUGIN_PROFILER_UPDATED_DIRECTORY =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 20;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to update the profiler capture directory.  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_PLUGIN_PROFILER_CANNOT_UPDATE_DIRECTORY =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 21;
 
 
 
  /**
   * The message ID for the message that will be used when the profiler starts
   * to capture information.  This takes a single argument, which is the DN of
   * the configuration entry.
   */
  public static final int MSGID_PLUGIN_PROFILER_STARTED_PROFILING =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 22;
 
 
 
  /**
   * The message ID for the message that will be used if the profiler is
   * requested to start but is already active.  This takes a single argument,
   * which is the DN of the configuration entry.
   */
  public static final int MSGID_PLUGIN_PROFILER_ALREADY_PROFILING =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 23;
 
 
 
  /**
   * The message ID for the message that will be used if the profiler is
   * requested to stop but is not active.  This takes a single argument, which
   * is the DN of the configuration entry.
   */
  public static final int MSGID_PLUGIN_PROFILER_NOT_RUNNING =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 24;
 
 
 
  /**
   * The message ID for the message that will be used when the profiler is
   * stopped.  This takes a single argument, which is the DN of the
   * configuration entry.
   */
  public static final int MSGID_PLUGIN_PROFILER_STOPPED_PROFILING =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 25;
 
 
 
  /**
   * The message ID for the message that will be used when the profiler thread
   * writes the data it has captured to a file.  This takes two arguments, which
   * are the DN of the configuration entry and the file to which the information
   * has been written.
   */
  public static final int MSGID_PLUGIN_PROFILER_WROTE_PROFILE_DATA =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 26;
 
 
 
  /**
   * The message ID for the message that will be used if the profiler is
   * requested to perform an unrecognized action.  This takes two arguments,
   * which are the DN of the configuration entry and the requested action.
   */
  public static final int MSGID_PLUGIN_PROFILER_UNKNOWN_ACTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_MILD_ERROR | 27;
 
 
 
  /**
   * The message ID for the message that will be used if the profiler is
   * going to skip processing on the requested action because an earlier problem
   * was encountered while processing changes to the configuration.  This takes
   * two arguments, which are the DN of the configuration entry and the
   * requested action.
   */
  public static final int MSGID_PLUGIN_PROFILER_SKIPPING_ACTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 28;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to process the requested profiler action.  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_PLUGIN_PROFILER_CANNOT_PERFORM_ACTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 29;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server startup plugins.  This takes two arguments,
   * which are the DN of the plugin configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_STARTUP_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_FATAL_ERROR | 30;
 
 
 
  /**
   * The message ID for the message that will be used if a startup plugin
   * returns <CODE>null</CODE> rather than a valid result.  This takes a single
   * argument, which is the DN of the plugin configuration entry.
   */
  public static final int MSGID_PLUGIN_STARTUP_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_FATAL_ERROR | 31;
 
 
 
  /**
   * The message ID for the message that will be used if a startup plugin
   * indicates that it failed but that the server startup may continue.  This
   * takes three arguments, which are the DN of the plugin configuration entry,
   * the error message generated by the plugin, and the unique ID for that error
   * message.
   */
  public static final int MSGID_PLUGIN_STARTUP_PLUGIN_FAIL_CONTINUE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 32;
 
 
 
  /**
   * The message ID for the message that will be used if a startup plugin
   * indicates that it failed and that the server should abort its startup.
   * This takes three arguments, which are the DN of the plugin configuration
   * entry, the error message generated by the plugin, and the unique ID for
   * that error message.
   */
  public static final int MSGID_PLUGIN_STARTUP_PLUGIN_FAIL_ABORT =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_FATAL_ERROR | 33;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server shutdown plugins.  This takes two arguments,
   * which are the DN of the plugin configuration entry and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_SHUTDOWN_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 34;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server post-connect plugins.  This takes four
   * arguments, which are the DN of the plugin configuration entry, the
   * connection ID for the client connection, the address of the client, and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_POST_CONNECT_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 35;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server post-connect plugins returns null rather than a valid result.  This
   * takes three arguments, which are the DN of the plugin configuration entry,
   * the connection ID for the client connection, and the address of that
   * client.
   */
  public static final int MSGID_PLUGIN_POST_CONNECT_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 36;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server post-disconnect plugins.  This takes four
   * arguments, which are the DN of the plugin configuration entry, the
   * connection ID for the client connection, the address of the client, and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_POST_DISCONNECT_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 37;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server post-disconnect plugins returns null rather than a valid result.
   * This takes three arguments, which are the DN of the plugin configuration
   * entry, the connection ID for the client connection, and the address of that
   * client.
   */
  public static final int MSGID_PLUGIN_POST_DISCONNECT_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 38;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server pre-parse plugins.  This takes five
   * arguments, which are the name of the associated operation type, the
   * DN of the plugin configuration entry, the connection ID for the client,
   * the operation ID for the operation, and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_PLUGIN_PRE_PARSE_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 39;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server pre-parse plugins returns null rather than a valid result.  This
   * takes four arguments, which are the name of the associated operation type,
   * the DN of the plugin configuration entry, the connection ID for the client
   * connection, and the operation ID for the operation.
   */
  public static final int MSGID_PLUGIN_PRE_PARSE_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 40;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server pre-operation plugins.  This takes five
   * arguments, which are the name of the associated operation type, the
   * DN of the plugin configuration entry, the connection ID for the client,
   * the operation ID for the operation, and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_PLUGIN_PRE_OPERATION_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 41;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server pre-operation plugins returns null rather than a valid result.  This
   * takes four arguments, which are the name of the associated operation type,
   * the DN of the plugin configuration entry, the connection ID for the client
   * connection, and the operation ID for the operation.
   */
  public static final int MSGID_PLUGIN_PRE_OPERATION_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 42;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server post-operation plugins.  This takes five
   * arguments, which are the name of the associated operation type, the
   * DN of the plugin configuration entry, the connection ID for the client,
   * the operation ID for the operation, and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_PLUGIN_POST_OPERATION_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 43;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server post-operation plugins returns null rather than a valid result.
   * This takes four arguments, which are the name of the associated operation
   * type, the DN of the plugin configuration entry, the connection ID for the
   * client connection, and the operation ID for the operation.
   */
  public static final int MSGID_PLUGIN_POST_OPERATION_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 44;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server post-response plugins.  This takes five
   * arguments, which are the name of the associated operation type, the
   * DN of the plugin configuration entry, the connection ID for the client,
   * the operation ID for the operation, and a string representation of the
   * exception that was caught.
   */
  public static final int MSGID_PLUGIN_POST_RESPONSE_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 45;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server post-response plugins returns null rather than a valid result.
   * This takes four arguments, which are the name of the associated operation
   * type, the DN of the plugin configuration entry, the connection ID for the
   * client connection, and the operation ID for the operation.
   */
  public static final int MSGID_PLUGIN_POST_RESPONSE_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 46;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server search result entry plugins.  This takes
   * five arguments, which are the DN of the plugin configuration entry,
   * the connection ID for the client, the operation ID for the search
   * operation, the DN of the search result entry, and a string representation
   * of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_SEARCH_ENTRY_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 47;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server search result entry plugins returns null rather than a valid result.
   * This takes four arguments, which are the DN of the plugin configuration
   * entry, the connection ID for the client connection, the operation ID for
   * the search operation, and the DN of the search result entry.
   */
  public static final int MSGID_PLUGIN_SEARCH_ENTRY_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 48;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server search result reference plugins.  This takes
   * five arguments, which are the DN of the plugin configuration entry,
   * the connection ID for the client, the operation ID for the search
   * operation, a string representation of the referral URLs, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_SEARCH_REFERENCE_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 49;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server search result reference plugins returns null rather than a valid
   * result.  This takes four arguments, which are the DN of the plugin
   * configuration  entry, the connection ID for the client connection, the
   * operation ID for the search operation, and a string representation of the
   * referral URLs.
   */
  public static final int MSGID_PLUGIN_SEARCH_REFERENCE_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 50;
 
 
 
  /**
   * The message ID for the message that will be used if the lastmod plugin is
   * configured with one or more invalid types.  This takes a single argument,
   * which is the invalid type that was used.
   */
  public static final int MSGID_PLUGIN_LASTMOD_INVALID_PLUGIN_TYPE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 51;
 
 
 
  /**
   * The message ID for the message that will be used for the description of the
   * "filename" argument to the profile viewer.  It does not take any arguments.
   */
  public static final int MSGID_PROFILEVIEWER_DESCRIPTION_FILENAMES =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 52;
 
 
 
  /**
   * The message ID for the message that will be used for the description of the
   * "useGUI" argument to the profile viewer.  It does not take any arguments.
   */
  public static final int MSGID_PROFILEVIEWER_DESCRIPTION_USE_GUI =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 53;
 
 
 
  /**
   * The message ID for the message that will be used for the description of the
   * "displayUsage" argument to the profile viewer.  It does not take any
   * arguments.
   */
  public static final int MSGID_PROFILEVIEWER_DESCRIPTION_USAGE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_INFORMATIONAL | 54;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to initialize the command-line arguments.  This takes a single
   * argument, which is a string representation of the exception that was
   * caught.
   */
  public static final int MSGID_PROFILEVIEWER_CANNOT_INITIALIZE_ARGS =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 55;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to parse the command-line arguments.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int MSGID_PROFILEVIEWER_ERROR_PARSING_ARGS =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 56;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * trying to parse the command-line arguments.  This takes a single argument,
   * which is a string representation of the exception that was caught.
   */
  public static final int MSGID_PROFILEVIEWER_CANNOT_PROCESS_DATA_FILE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 57;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server LDIF import plugins.  This takes three
   * arguments, which are the DN of the plugin configuration entry, the DN
   * of the entry being imported, and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_PLUGIN_LDIF_IMPORT_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 58;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server LDIF import plugins returns null rather than a valid result.  This
   * This takes two arguments, which are the DN of the plugin configuration
   * entry and the DN of the entry being imported.
   */
  public static final int MSGID_PLUGIN_LDIF_IMPORT_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 59;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server LDIF export plugins.  This takes three
   * arguments, which are the DN of the plugin configuration entry, the DN
   * of the entry being exported, and a string representation of the exception
   * that was caught.
   */
  public static final int MSGID_PLUGIN_LDIF_EXPORT_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 60;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server LDIF export plugins returns null rather than a valid result.  This
   * This takes two arguments, which are the DN of the plugin configuration
   * entry and the DN of the entry being exported.
   */
  public static final int MSGID_PLUGIN_LDIF_EXPORT_PLUGIN_RETURNED_NULL =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 61;
 
 
 
  /**
   * The message ID for the message that will be used if the entryUUID plugin is
   * configured with one or more invalid types.  This takes a single argument,
   * which is the invalid type that was used.
   */
  public static final int MSGID_PLUGIN_ENTRYUUID_INVALID_PLUGIN_TYPE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 62;
 
 
 
  /**
   * The message ID for the message that will be used if an exception is thrown
   * by one of the Directory Server intermediate response plugins.  This takes
   * four arguments, which are the DN of the plugin configuration entry,
   * the connection ID for the client, the operation ID for the operation, and a
   * string representation of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_INTERMEDIATE_RESPONSE_PLUGIN_EXCEPTION =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 63;
 
 
 
  /**
   * The message ID for the message that will be used if one of the Directory
   * Server intermediate response plugins returns null rather than a valid
   * result.  This takes four arguments, which are the DN of the plugin
   * configuration  entry, the connection ID for the client connection, and the
   * operation ID for the associated operation.
   */
  public static final int
       MSGID_PLUGIN_INTERMEDIATE_RESPONSE_PLUGIN_RETURNED_NULL =
            CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 64;
 
 
 
  /**
   * The message ID for the message that will be used if the password policy
   * import plugin is configured with one or more invalid types.  This takes a
   * single argument, which is the invalid type that was used.
   */
  public static final int MSGID_PLUGIN_PWPIMPORT_INVALID_PLUGIN_TYPE =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 65;
 
 
 
  /**
   * The message ID for the message that will be used if an error occurs while
   * attempting to encode a user password.  This takes three arguments, which
   * are the name of the password attribute, the user entry DN, and a string
   * representation of the exception that was caught.
   */
  public static final int MSGID_PLUGIN_PWPIMPORT_ERROR_ENCODING_PASSWORD =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 66;
 
 
 
  /**
   * The message ID for the message that will be used if an attempt is made to
   * invoke a plugin for a plugin type that it does not support.  This takes
   * two arguments, which are the DN of the plugin configuration entry and the
   * name of the unsupported plugin type.
   */
  public static final int MSGID_PLUGIN_TYPE_NOT_SUPPORTED =
       CATEGORY_MASK_PLUGIN | SEVERITY_MASK_SEVERE_ERROR | 67;
 
 
 
  /**
   * Associates a set of generic messages with the message IDs defined in this
   * class.
   */
  public static void registerMessages()
  {
    registerMessage(MSGID_PLUGIN_NULL_CONFIG_ENTRY,
                    "Unable to initialize an instance of the plugin defined " +
                    "in class %s because the provided configuration entry " +
                    "was null.");
 
 
    registerMessage(MSGID_PLUGIN_DESCRIPTION_SHUTDOWN_PASSWORD,
                    "Specifies an optional encoded password that will be " +
                    "required in order to be able to stop the Directory " +
                    "Server.  If this is not provided, then no password will " +
                    "be required (although it will still be necessary to " +
                    "authenticate to the server in order to be able to add " +
                    "necessary task entry).  Changes to this password will " +
                    "take effect immediately.");
 
 
    registerMessage(MSGID_PLUGIN_ADLIST_NO_PLUGIN_TYPES,
                    "The LDAP attribute description list plugin instance " +
                    "defined in configuration entry %s does not list any " +
                    "plugin types.  This plugin must be configured to " +
                    "operate as a pre-parse search plugin.");
    registerMessage(MSGID_PLUGIN_ADLIST_INVALID_PLUGIN_TYPE,
                    "The LDAP attribute description list plugin instance " +
                    "defined in configuration entry %s lists an invalid " +
                    "plugin type %s.  This plugin may only be used as a " +
                    "pre-parse search plugin.");
 
 
    registerMessage(MSGID_PLUGIN_PROFILER_NO_PLUGIN_TYPES,
                    "The Directory Server profiler plugin instance defined " +
                    "in configuration entry %s does not list any plugin " +
                    "types.  This plugin must be configured to operate as a " +
                    "startup plugin.");
    registerMessage(MSGID_PLUGIN_PROFILER_INVALID_PLUGIN_TYPE,
                    "The Directory Server profiler plugin instance defined " +
                    "in configuration entry %s lists an invalid plugin type " +
                    "%s.  This plugin may only be used as a startup plugin.");
    registerMessage(MSGID_PLUGIN_PROFILER_DESCRIPTION_PROFILE_DIR,
                    "Specifies the path to the directory into which profile " +
                    "information will be written.  The directory must exist " +
                    "and the Directory Server must have permission to create " +
                    "new files in it.  Changes to this configuration " +
                    "attribute will take effect immediately.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_DETERMINE_PROFILE_DIR,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " +  ATTR_PROFILE_DIR +
                    " attribute in the %s entry:  %s.  The default profile " +
                    "directory of %s will be used.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_WRITE_PROFILE_DATA,
                    "An unexpected error occurred when the profiler plugin " +
                    "defined in configuration entry %s attempted to write " +
                    "the information captured to output file %s:  %s.");
    registerMessage(MSGID_PLUGIN_PROFILER_DESCRIPTION_AUTOSTART,
                    "Indicates whether the profiler plugin should start " +
                    "collecting data automatically when the Directory Server " +
                    "is started.  This will only be read when the server is " +
                    "started, and any changes will take effect on the next " +
                    "restart.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_DETERMINE_AUTOSTART,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " +  ATTR_PROFILE_AUTOSTART +
                    " attribute in the %s entry:  %s.  Profiling information " +
                    "will not automatically be captured on startup and must " +
                    "be manually enabled.");
    registerMessage(MSGID_PLUGIN_PROFILER_DESCRIPTION_INTERVAL,
                    "Specifies the sample interval that should be used when " +
                    "capturing profiling information in the server.  Changes " +
                    "to this configuration attribute will take effect the " +
                    "next time the profiler is started.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_DETERMINE_INTERVAL,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_PROFILE_INTERVAL +
                    "attribute in the %s entry:  %s.  The default sample " +
                    "interval of %d milliseconds will be used.");
    registerMessage(MSGID_PLUGIN_PROFILER_DESCRIPTION_STATE,
                    "Specifies the current state for the profiler.  It will " +
                    "be either \"enabled\" (which indicates that the " +
                    "profiler thread is actively collecting data) or " +
                    "\"disabled\".  This is a read-only attribute.");
    registerMessage(MSGID_PLUGIN_PROFILER_DESCRIPTION_ACTION,
                    "Specifies the action that should be taken by the " +
                    "profiler.  A value of \"start\" will cause the profiler " +
                    "thread to start collecting data if it is not already " +
                    "active.  A value of \"stop\" will cause the profiler " +
                    "thread to stop collecting data and write it do disk, " +
                    "and a value of \"cancel\" will cause the profiler " +
                    "thread to stop collecting data and discard anything " +
                    "that has been captured.  These operations will occur " +
                    "immediately.");
    registerMessage(MSGID_PLUGIN_PROFILER_INVALID_PROFILE_DIR,
                    "The profile directory %s specified in attribute " +
                    ATTR_PROFILE_DIR + " of configuration entry %s is " +
                    "invalid because the specified path does not exist or " +
                    "is not a directory.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_DETERMINE_INTERVAL,
                    "An unexpected error occurred while attempting to " +
                    "determine the value of the " + ATTR_PROFILE_ACTION +
                    " attribute in the %s entry:  %s.  No action will be " +
                    "taken.");
    registerMessage(MSGID_PLUGIN_PROFILER_UPDATED_INTERVAL,
                    "The sample interval for the profiler plugin defined in " +
                    "configuration entry %s has been updated to %d " +
                    "milliseconds.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_UPDATE_INTERVAL,
                    "An unexpected error occurred while attempting to update " +
                    "the sample interval for the profiler plugin defined in " +
                    "configuration entry %s:  %s.");
    registerMessage(MSGID_PLUGIN_PROFILER_UPDATED_DIRECTORY,
                    "The profile directory for the profiler plugin defined " +
                    "in configuration entry %s has been changed to %s.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_UPDATE_DIRECTORY,
                    "An unexpected error occurred while attempting to update " +
                    "the profile directory for the profiler plugin defined " +
                    "in configuration entry %s:  %s.");
    registerMessage(MSGID_PLUGIN_PROFILER_STARTED_PROFILING,
                    "The profiler plugin defined in configuration entry %s " +
                    "has been activated and has started capturing data.");
    registerMessage(MSGID_PLUGIN_PROFILER_ALREADY_PROFILING,
                    "The profiler plugin defined in configuration entry %s " +
                    "is already active, and therefore the request to start " +
                    "profiling has been ignored.");
    registerMessage(MSGID_PLUGIN_PROFILER_NOT_RUNNING,
                    "The profiler plugin defined in configuration entry %s " +
                    "received a request to stop capturing data but it was " +
                    "not active so no action has been taken.");
    registerMessage(MSGID_PLUGIN_PROFILER_STOPPED_PROFILING,
                    "The profiler plugin defined in configuration entry %s " +
                    "has been stopped and is no longer capturing data.");
    registerMessage(MSGID_PLUGIN_PROFILER_WROTE_PROFILE_DATA,
                    "The data collected by the profiler plugin defined in " +
                    "configuration entry %s has been written to %s.");
    registerMessage(MSGID_PLUGIN_PROFILER_UNKNOWN_ACTION,
                    "The profiler plugin defined in configuration entry %s " +
                    "has been requested to perform an action %s that is " +
                    "not recognized by the server.  No action will be taken.");
    registerMessage(MSGID_PLUGIN_PROFILER_SKIPPING_ACTION,
                    "A profiler action %s was requested for the profiler " +
                    "plugin defined in configuration entry %s, but one or " +
                    "more problems were encountered with the plugin " +
                    "configuration and therefore the requested action will " +
                    "be skipped.");
    registerMessage(MSGID_PLUGIN_PROFILER_CANNOT_PERFORM_ACTION,
                    "An unexpected error occurred while attempting to " +
                    "process the requested action for the profiler plugin " +
                    "defined in configuration entry %s:  %s.");
 
 
    registerMessage(MSGID_PLUGIN_STARTUP_PLUGIN_EXCEPTION,
                    "The startup plugin defined in configuration entry %s " +
                    "threw an exception when it was invoked during the " +
                    "Directory Server startup process:  %s.  The server " +
                    "startup process has been aborted.");
    registerMessage(MSGID_PLUGIN_STARTUP_PLUGIN_RETURNED_NULL,
                    "The startup plugin defined in configuration entry %s " +
                    "returned a null value when it was invoked during the " +
                    "Directory Server startup process.  This is an illegal " +
                    "return value, and the server startup process has been " +
                    "aborted.");
    registerMessage(MSGID_PLUGIN_STARTUP_PLUGIN_FAIL_CONTINUE,
                    "The startup plugin defined in configuration entry %s " +
                    "encountered an error when it was invoked during the " +
                    "Directory Server startup process:  %s (error ID %d).  " +
                    "The startup process will continue, but this failure " +
                    "may impact the operation of the server.");
    registerMessage(MSGID_PLUGIN_STARTUP_PLUGIN_FAIL_ABORT,
                    "The startup plugin defined in configuration entry %s " +
                    "encountered an error when it was invoked during the " +
                    "Directory Server startup process:  %s (error ID %d).  " +
                    "The server startup process has been aborted.");
 
 
    registerMessage(MSGID_PLUGIN_SHUTDOWN_PLUGIN_EXCEPTION,
                    "The shutdown plugin defined in configuration entry %s " +
                    "threw an exception when it was invoked during the " +
                    "Directory Server shutdown process:  %s.");
 
 
    registerMessage(MSGID_PLUGIN_POST_CONNECT_PLUGIN_EXCEPTION,
                    "The post-connect plugin defined in configuration entry " +
                    "%s threw an exception when it was invoked for " +
                    "connection %d from %s:  %s.  The connection will be " +
                    "terminated.");
    registerMessage(MSGID_PLUGIN_POST_CONNECT_PLUGIN_RETURNED_NULL,
                    "The post-connect plugin defined in configuration entry " +
                    "%s returned null when invoked for connection %d from " +
                    "%s.  This is an illegal response, and the connection " +
                    "will be terminated.");
 
 
    registerMessage(MSGID_PLUGIN_POST_DISCONNECT_PLUGIN_EXCEPTION,
                    "The post-disconnect plugin defined in configuration " +
                    "entry %s threw an exception when it was invoked for " +
                    "connection %d from %s:  %s.");
    registerMessage(MSGID_PLUGIN_POST_DISCONNECT_PLUGIN_RETURNED_NULL,
                    "The post-disconnect plugin defined in configuration " +
                    "entry %s returned null when invoked for connection %d " +
                    "from %s.  This is an illegal response.");
 
 
    registerMessage(MSGID_PLUGIN_LDIF_IMPORT_PLUGIN_EXCEPTION,
                    "The LDIF import plugin defined in configuration entry " +
                    "%s threw an exception when it was invoked on entry " +
                    "%s:  %s.");
    registerMessage(MSGID_PLUGIN_LDIF_IMPORT_PLUGIN_RETURNED_NULL,
                    "The LDIF import plugin defined in configuration entry " +
                    "%s returned null when invoked on entry %s.  This is an " +
                    "illegal response.");
    registerMessage(MSGID_PLUGIN_LDIF_EXPORT_PLUGIN_EXCEPTION,
                    "The LDIF export plugin defined in configuration entry " +
                    "%s threw an exception when it was invoked on entry " +
                    "%s:  %s.");
    registerMessage(MSGID_PLUGIN_LDIF_EXPORT_PLUGIN_RETURNED_NULL,
                    "The LDIF export plugin defined in configuration entry " +
                    "%s returned null when invoked on entry %s.  This is an " +
                    "illegal response.");
 
 
    registerMessage(MSGID_PLUGIN_PRE_PARSE_PLUGIN_EXCEPTION,
                    "The pre-parse %s plugin defined in configuration " +
                    "entry %s threw an exception when it was invoked for " +
                    "connection %d operation %d:  %s.  Processing on this " +
                    "operation will be terminated.");
    registerMessage(MSGID_PLUGIN_PRE_PARSE_PLUGIN_RETURNED_NULL,
                    "The pre-parse %s plugin defined in configuration " +
                    "entry %s returned null when invoked for connection %d " +
                    "operation %s.  This is an illegal response, and " +
                    "processing on this operation will be terminated.");
 
 
    registerMessage(MSGID_PLUGIN_PRE_OPERATION_PLUGIN_EXCEPTION,
                    "The pre-operation %s plugin defined in configuration " +
                    "entry %s threw an exception when it was invoked for " +
                    "connection %d operation %d:  %s.  Processing on this " +
                    "operation will be terminated.");
    registerMessage(MSGID_PLUGIN_PRE_OPERATION_PLUGIN_RETURNED_NULL,
                    "The pre-operation %s plugin defined in configuration " +
                    "entry %s returned null when invoked for connection %d " +
                    "operation %s.  This is an illegal response, and " +
                    "processing on this operation will be terminated.");
 
 
    registerMessage(MSGID_PLUGIN_POST_OPERATION_PLUGIN_EXCEPTION,
                    "The post-operation %s plugin defined in configuration " +
                    "entry %s threw an exception when it was invoked for " +
                    "connection %d operation %d:  %s.  Processing on this " +
                    "operation will be terminated.");
    registerMessage(MSGID_PLUGIN_POST_OPERATION_PLUGIN_RETURNED_NULL,
                    "The post-operation %s plugin defined in configuration " +
                    "entry %s returned null when invoked for connection %d " +
                    "operation %s.  This is an illegal response, and " +
                    "processing on this operation will be terminated.");
 
 
    registerMessage(MSGID_PLUGIN_POST_RESPONSE_PLUGIN_EXCEPTION,
                    "The post-response %s plugin defined in configuration " +
                    "entry %s threw an exception when it was invoked for " +
                    "connection %d operation %d:  %s.  Processing on this " +
                    "operation will be terminated.");
    registerMessage(MSGID_PLUGIN_POST_RESPONSE_PLUGIN_RETURNED_NULL,
                    "The post-response %s plugin defined in configuration " +
                    "entry %s returned null when invoked for connection %d " +
                    "operation %s.  This is an illegal response, and " +
                    "processing on this operation will be terminated.");
 
 
    registerMessage(MSGID_PLUGIN_SEARCH_ENTRY_PLUGIN_EXCEPTION,
                    "The search result entry plugin defined in configuration " +
                    "entry %s threw an exception when it was invoked for " +
                    "connection %d operation %d with entry %s:  %s.  " +
                    "Processing on this search operation will be terminated.");
    registerMessage(MSGID_PLUGIN_SEARCH_ENTRY_PLUGIN_RETURNED_NULL,
                    "The search result entry plugin defined in configuration " +
                    "entry %s returned null when invoked for connection %d " +
                    "operation %s with entry %s.  This is an illegal " +
                    "response, and processing on this search operation will " +
                    "be terminated.");
 
 
    registerMessage(MSGID_PLUGIN_SEARCH_REFERENCE_PLUGIN_EXCEPTION,
                    "The search result reference plugin defined in " +
                    "configuration entry %s threw an exception when it was " +
                    "invoked for connection %d operation %d with referral " +
                    "URL(s) %s:  %s.  Processing on this search operation " +
                    "will be terminated.");
    registerMessage(MSGID_PLUGIN_SEARCH_REFERENCE_PLUGIN_RETURNED_NULL,
                    "The search result reference plugin defined in " +
                    "configuration entry %s returned null when invoked for " +
                    "connection %d operation %s with referral URL(s) %s.  " +
                    "This is an illegal response, and processing on this " +
                    "search operation will be terminated.");
 
 
    registerMessage(MSGID_PLUGIN_INTERMEDIATE_RESPONSE_PLUGIN_EXCEPTION,
                    "The intermediate response plugin defined in " +
                    "configuration entry %s threw an exception when it was " +
                    "invoked for connection %d operation %d:  %s.  " +
                    "Processing on this operation will be terminated.");
    registerMessage(MSGID_PLUGIN_INTERMEDIATE_RESPONSE_PLUGIN_RETURNED_NULL,
                    "The intermediate response plugin defined in " +
                    "configuration entry %s returned null when invoked for " +
                    "connection %d operation %s.  This is an illegal " +
                    "response, and processing on this operation will be " +
                    "terminated.");
 
 
    registerMessage(MSGID_PLUGIN_LASTMOD_INVALID_PLUGIN_TYPE,
                    "An attempt was made to register the LastMod plugin to " +
                    "be invoked as a %s plugin.  This plugin type is not " +
                    "allowed for this plugin.");
 
 
    registerMessage(MSGID_PROFILEVIEWER_DESCRIPTION_FILENAMES,
                    "Specifies the path to a profile data file.  This  " +
                    "argument may be provided more than once to analyze data " +
                    "from multiple data files.");
    registerMessage(MSGID_PROFILEVIEWER_DESCRIPTION_USE_GUI,
                    "Indicates whether to view the profile information in " +
                    "GUI mode or to write the resulting data to standard " +
                    "output.");
    registerMessage(MSGID_PROFILEVIEWER_DESCRIPTION_USAGE,
                    "Displays this usage information.");
    registerMessage(MSGID_PROFILEVIEWER_CANNOT_INITIALIZE_ARGS,
                    "An unexpected error occurred while attempting to " +
                    "initialize the command-line arguments:  %s.");
    registerMessage(MSGID_PROFILEVIEWER_ERROR_PARSING_ARGS,
                    "An error occurred while parsing the command-line " +
                    "arguments:  %s.");
    registerMessage(MSGID_PROFILEVIEWER_CANNOT_PROCESS_DATA_FILE,
                    "An error occurred while trying to process the profile " +
                    "data in file %s:  %s.");
 
 
    registerMessage(MSGID_PLUGIN_ENTRYUUID_INVALID_PLUGIN_TYPE,
                    "An attempt was made to register the EntryUUID plugin to " +
                    "be invoked as a %s plugin.  This plugin type is not " +
                    "allowed for this plugin.");
 
 
    registerMessage(MSGID_PLUGIN_PWPIMPORT_INVALID_PLUGIN_TYPE,
                    "An attempt was made to register the password policy " +
                    "import plugin to be invoked as a %s plugin.  This " +
                    "plugin type is not allowed for this plugin.");
    registerMessage(MSGID_PLUGIN_PWPIMPORT_ERROR_ENCODING_PASSWORD,
                    "An error occurred while attempting to encode a password " +
                    "value stored in attribute %s of user entry %s:  %s.  " +
                    "Password values for this user will not be encoded.");
 
 
    registerMessage(MSGID_PLUGIN_TYPE_NOT_SUPPORTED,
                    "The plugin defined in configuration entry %s does not " +
                    "support the %s plugin type.");
  }
}