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

Jean-Noel Rouvignac
25.14.2013 df3e100d0e39161901afde29e8d5cd2a5cd80675
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
/*
 * 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
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Portions copyright 2011-2013 ForgeRock AS
 */
package org.opends.messages;
 
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.ResourceBundle;
 
/**
 * Base class for all Message descriptor classes.
 */
@org.opends.server.types.PublicAPI(
    stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
    mayInstantiate=false,
    mayExtend=false,
    mayInvoke=true)
public abstract class MessageDescriptor {
 
  /**
   * ID for messages that don't have a real ID.
   */
  public static final int NULL_ID = -1;
 
  /**
   * The maximum number of arguments that can be handled by
   * a specific subclass.  If you define more subclasses be
   * sure to increment this number appropriately.
   */
  static public final int DESCRIPTOR_MAX_ARG_HANDLER = 11;
 
  /**
   * The base name of the specific argument handling subclasses
   * defined below.  The class names consist of the base name
   * followed by a number indicating the number of arguments
   * that they handle when creating messages or the letter "N"
   * meaning any number of arguments.
   */
  public static final String DESCRIPTOR_CLASS_BASE_NAME = "Arg";
 
  /**
   * Subclass for creating messages with no arguments.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg0 extends MessageDescriptor {
 
    /**
     * Cached copy of the message created by this descriptor.  We can
     * get away with this for the zero argument message because it is
     * immutable.
     */
    private Message message;
 
    private boolean requiresFormat;
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg0(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
      message = new Message(this);
      requiresFormat = containsArgumentLiterals(getFormatString());
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg0(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
      message = new Message(this);
      requiresFormat = containsArgumentLiterals(getFormatString());
    }
 
    /**
     * Creates a message.
     * @return Message object
     */
    public Message get() {
      return message;
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return requiresFormat;
    }
  }
 
  /**
   * Subclass for creating messages with one argument.
   * @param <T1> The type of the first message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg1<T1> extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg1(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg1(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     */
    public Message get(T1 a1) {
      return new Message(this, a1);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with two arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg2<T1, T2> extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg2(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg2(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     */
    public Message get(T1 a1, T2 a2) {
      return new Message(this, a1, a2);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with three arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg3<T1, T2, T3> extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg3(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg3(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3) {
      return new Message(this, a1, a2, a3);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with four arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg4<T1, T2, T3, T4> extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg4(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg4(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4) {
      return new Message(this, a1, a2, a3, a4);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with five arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   * @param <T5> The type of the fifth message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg5<T1, T2, T3, T4, T5> extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg5(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg5(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     * @param a5 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5) {
      return new Message(this, a1, a2, a3, a4, a5);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with six arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   * @param <T5> The type of the fifth message argument.
   * @param <T6> The type of the sixth message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg6<T1, T2, T3, T4, T5, T6> extends
      MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg6(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg6(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     * @param a5 message argument
     * @param a6 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6) {
      return new Message(this, a1, a2, a3, a4, a5, a6);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with seven arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   * @param <T5> The type of the fifth message argument.
   * @param <T6> The type of the sixth message argument.
   * @param <T7> The type of the seventh message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg7<T1, T2, T3, T4, T5, T6, T7>
          extends MessageDescriptor
  {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg7(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg7(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     * @param a5 message argument
     * @param a6 message argument
     * @param a7 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6, T7 a7) {
      return new Message(this, a1, a2, a3, a4, a5, a6, a7);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with eight arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   * @param <T5> The type of the fifth message argument.
   * @param <T6> The type of the sixth message argument.
   * @param <T7> The type of the seventh message argument.
   * @param <T8> The type of the eighth message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg8<T1, T2, T3, T4, T5, T6, T7, T8>
          extends MessageDescriptor
  {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg8(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg8(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     * @param a5 message argument
     * @param a6 message argument
     * @param a7 message argument
     * @param a8 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6,
                          T7 a7, T8 a8) {
      return new Message(this, a1, a2, a3, a4, a5, a6, a7, a8);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with nine arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   * @param <T5> The type of the fifth message argument.
   * @param <T6> The type of the sixth message argument.
   * @param <T7> The type of the seventh message argument.
   * @param <T8> The type of the eighth message argument.
   * @param <T9> The type of the ninth message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg9<T1, T2, T3, T4, T5, T6, T7, T8, T9>
          extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg9(String rbBase, String key, Category category,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg9(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     * @param a5 message argument
     * @param a6 message argument
     * @param a7 message argument
     * @param a8 message argument
     * @param a9 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6,
                          T7 a7, T8 a8, T9 a9) {
      return new Message(this, a1, a2, a3, a4, a5, a6, a7, a8, a9);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with ten arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   * @param <T5> The type of the fifth message argument.
   * @param <T6> The type of the sixth message argument.
   * @param <T7> The type of the seventh message argument.
   * @param <T8> The type of the eighth message argument.
   * @param <T9> The type of the ninth message argument.
   * @param <T10> The type of the tenth message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
          extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg10(String rbBase, String key, Category category,
               Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg10(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     * @param a5 message argument
     * @param a6 message argument
     * @param a7 message argument
     * @param a8 message argument
     * @param a9 message argument
     * @param a10 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6,
                          T7 a7, T8 a8, T9 a9, T10 a10) {
      return new Message(this, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with eleven arguments.
   * @param <T1> The type of the first message argument.
   * @param <T2> The type of the second message argument.
   * @param <T3> The type of the third message argument.
   * @param <T4> The type of the fourth message argument.
   * @param <T5> The type of the fifth message argument.
   * @param <T6> The type of the sixth message argument.
   * @param <T7> The type of the seventh message argument.
   * @param <T8> The type of the eighth message argument.
   * @param <T9> The type of the ninth message argument.
   * @param <T10> The type of the tenth message argument.
   * @param <T11> The type of the eleventh message argument.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class Arg11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
          extends MessageDescriptor
  {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg11(String rbBase, String key, Category category,
               Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public Arg11(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param a1 message argument
     * @param a2 message argument
     * @param a3 message argument
     * @param a4 message argument
     * @param a5 message argument
     * @param a6 message argument
     * @param a7 message argument
     * @param a8 message argument
     * @param a9 message argument
     * @param a10 message argument
     * @param a11 message argument
     */
    public Message get(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6,
                          T7 a7, T8 a8, T9 a9, T10 a10, T11 a11) {
      return new Message(this, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * Subclass for creating messages with an any number of arguments.
   * In general this class should be used when a message needs to be
   * defined with more arguments that can be handled with the current
   * number of subclasses
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.UNCOMMITTED,
      mayInstantiate=true,
      mayExtend=false,
      mayInvoke=true)
  static public final class ArgN extends MessageDescriptor {
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param category of created messages
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public ArgN(String rbBase, String key, Category category,
               Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, category, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a parameterized instance.
     * @param rbBase base of the backing resource bundle
     * @param key for accessing the format string from the resource bundle
     * @param mask to apply to the USER_DEFINED category
     * @param severity of created messages
     * @param ordinal of created messages
     * @param classLoader the class loader to be used to get the ResourceBundle
     */
    public ArgN(String rbBase, String key, int mask,
              Severity severity, int ordinal, ClassLoader classLoader) {
      super(rbBase, key, mask, severity, ordinal, classLoader);
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param args message arguments
     */
    public Message get(Object... args) {
      return new Message(this, args);
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return true;
    }
 
  }
 
  /**
   * A descriptor for creating a raw message from a <code>String</code>.
   * In general this descriptor should NOT be used internally.  OpenDS
   * plugins may want to use the mechanism to create messages without
   * storing their strings in resource bundles.
   */
  @org.opends.server.types.PublicAPI(
      stability=org.opends.server.types.StabilityLevel.PRIVATE
  )
  static final class Raw extends MessageDescriptor {
 
    private String formatString;
 
    private boolean requiresFormatter;
 
    /**
     * Creates a parameterized instance.
     * @param formatString for created messages
     * @param category for created messages
     * @param severity for created messages
     */
    Raw(CharSequence formatString, Category category,
                                Severity severity) {
      super(null, null, category, severity, null, null);
      this.formatString = formatString != null ? formatString.toString() : "";
      this.requiresFormatter = this.formatString.matches(".*%.*");
    }
 
    /**
     * Creates a message with arguments that will replace format
     * specifiers in the associated format string when the message
     * is rendered to string representation.
     * @return Message object
     * @param args message arguments
     */
    public Message get(Object... args) {
      return new Message(this, args);
    }
 
    /**
     * Overridden in order to bypass the resource bundle
     * plumbing and return the format string directly.
     * @param locale ignored
     * @return format string
     */
    @Override
    String getFormatString(Locale locale) {
      return this.formatString;
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    boolean requiresFormatter() {
      return this.requiresFormatter;
    }
 
  }
 
  /** String for accessing backing resource bundle. */
  private final String rbBase;
 
  /** Used for accessing format string from the resource bundle. */
  private final String key;
 
  /** Category for messages created by this descriptor. */
  private final Category category;
 
  /**
   * Custom mask associated with messages created by this
   * descriptor.  The value of this variable might be null
   * to indicate that the mask should come from
   * <code>category</code>.
   */
  private final Integer mask;
 
  /**
   * The severity associated with messages created by this
   * descriptor.
   */
  private final Severity severity;
 
  /**
   * The value that makes a message unique among other messages
   * having the same severity and category.  May be null for
   * raw messages.
   */
  private final Integer ordinal;
 
  /**
   * The class loader to be used to retrieve the ResourceBundle.  If null
   * the default class loader will be used.
   */
  private final ClassLoader classLoader;
 
 
  private final Map<Locale,String> formatStrMap = new HashMap<Locale,String>();
 
  /**
   * Obtains the category of this descriptor.  Guaranteed not to be null.
   * @return Category of this message
   */
  public final Category getCategory() {
    return this.category;
  }
 
  /**
   * Obtains the severity of this descriptor.  Guaranteed not to be null.
   * @return Category of this message
   */
  public final Severity getSeverity() {
    return this.severity;
  }
 
  /**
   * Obtains the ordinal value for this message which makes messages
   * unique among messages defined with the same category and severity.
   * @return int ordinal value
   */
  public final int getOrdinal() {
    if (this.ordinal == null)
      return 0;
    else
      return this.ordinal;
  }
 
  /**
   * Returns the ID unique to all OpenDS messages.
   * @return unique ID
   */
  public final int getId() {
    if (this.ordinal == null) { // ordinal may be null for raw messages
      return NULL_ID;
    } else {
      return this.ordinal | this.category.getMask() | this.severity.getMask();
    }
  }
 
  /**
   * Obtains the mask of this descriptor.  The mask will either be
   * the mask of the associated <code>Category</code> or the mask
   * explicitly set in the constructor.
   * @return Integer mask value
   */
  public final int getMask() {
    if (this.mask != null) {
      return this.mask;
    } else {
      return this.category.getMask();
    }
  }
 
  /**
   * Returns the key for accessing the message template in a resource bundle.
   * May be null for raw messages.
   * @return key of this message
   */
  public final String getKey() {
    return this.key;
  }
 
  /**
   * Obtains the resource bundle base string used to access the
   * resource bundle containing created message's format string.
   * May be null for raw messages.
   * @return string base
   */
  public final String getBase() {
    return this.rbBase;
  }
 
  /**
   * Indicates whether or not this descriptor format string should
   * be processed by Formatter during string rendering.
   * @return boolean where true means Formatter should be used; false otherwise
   * @see java.util.Formatter
   */
  abstract boolean requiresFormatter();
 
  /**
   * Obtains the format string for constructing the string
   * value of this message according to the default
   * locale.
   * @return format string
   */
  final String getFormatString() {
    return getFormatString(Locale.getDefault());
  }
 
  /**
   * Obtains the format string for constructing the string
   * value of this message according to the requested
   * locale.
   * @param locale for the returned format string
   * @return format string
   */
  String getFormatString(Locale locale) {
    String fmtStr = formatStrMap.get(locale);
    if (fmtStr == null) {
      ResourceBundle bundle = getBundle(locale);
      fmtStr = bundle.getString(this.key);
      formatStrMap.put(locale, fmtStr);
    }
    return fmtStr;
  }
 
  /**
   * Indicates whether or not formatting should be applied
   * to the given format string.  Note that a format string
   * might have literal specifiers (%% or %n for example) that
   * require formatting but are not replaced by arguments.
   * @param s candidate for formatting
   * @return boolean where true indicates that the format
   *         string requires formatting
   */
  protected final boolean containsArgumentLiterals(String s) {
    return s.matches(".*%[n|%].*"); // match Formatter literals
  }
 
  private ResourceBundle getBundle(Locale locale) {
    if (locale == null) locale = Locale.getDefault();
    if (classLoader == null)
    {
      return ResourceBundle.getBundle(this.rbBase, locale);
    }
    else
    {
      return ResourceBundle.getBundle(this.rbBase, locale, classLoader);
    }
  }
 
  /**
   * Creates a parameterized message descriptor.
   * @param rbBase string for accessing the underlying message bundle
   * @param key for accessing the format string from the message bundle
   * @param category of any created message
   * @param severity of any created message
   * @param ordinal of any created message
   * @param classLoader the class loader to be used to get the ResourceBundle
   */
  private MessageDescriptor(String rbBase, String key, Category category,
                     Severity severity, Integer ordinal,
                     ClassLoader classLoader) {
    if (category == null) {
      throw new NullPointerException("Null Category value for message " +
              "descriptor with key " + key);
    }
    if (severity == null) {
      throw new NullPointerException("Null Severity value for message " +
              "descriptor with key " + key);
    }
    this.rbBase = rbBase;
    this.key = key;
    this.category = category;
    this.severity = severity;
    this.ordinal = ordinal;
    this.classLoader = classLoader;
    this.mask = null;
  }
 
  /**
   * Creates a parameterized message descriptor.  Messages created by
   * this descriptor will have a category of <code>Category.USER_DEFINED</code>
   * and have a custom mask indicated by <code>mask</code>.
   * @param rbBase string for accessing the underlying message bundle
   * @param key for accessing the format string from the message bundle
   * @param mask custom mask
   * @param severity of any created message
   * @param ordinal of any created message
   * @param classLoader the class loader to be used to get the ResourceBundle
   */
  private MessageDescriptor(String rbBase, String key, int mask,
                     Severity severity, Integer ordinal,
                     ClassLoader classLoader) {
    if (severity == null) {
      throw new NullPointerException("Null Severity value for message " +
              "descriptor with key " + key);
    }
    this.rbBase = rbBase;
    this.key = key;
    this.category = Category.USER_DEFINED;
    this.severity = severity;
    this.ordinal = ordinal;
    this.classLoader = classLoader;
    this.mask = mask;
  }
 
}