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

Nicolas Capponi
10.15.2014 9462a99be59193f9ddc9b507d44752e820727644
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
# 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 legal-notices/CDDLv1_0.txt
# or http://forgerock.org/license/CDDLv1.0.html.
# 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 legal-notices/CDDLv1_0.txt.
# 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 2006-2010 Sun Microsystems, Inc.
#      Portions Copyright 2011-2014 ForgeRock AS
#      Portions Copyright 2012-2014 Manuel Gaupp
 
 
#
# Global directives
#
global.category=SCHEMA
 
#
# Format string definitions
#
# Keys must be formatted as follows:
#
# [SEVERITY]_[DESCRIPTION]_[ORDINAL]
#
# where:
#
# SEVERITY is one of:
# [ERR, WARN, NOTICE, INFO, DEBUG]
#
# DESCRIPTION is an upper case string providing a hint as to the context of
# the message in upper case with the underscore ('_') character serving as
# word separator
#
# ORDINAL is an integer unique among other ordinals in this file
#
ERR_ATTR_SYNTAX_UNKNOWN_APPROXIMATE_MATCHING_RULE_1=Unable to retrieve \
 approximate matching rule %s used as the default for the %s attribute syntax. \
 Approximate matching will not be allowed by default for attributes with this \
 syntax
ERR_ATTR_SYNTAX_UNKNOWN_EQUALITY_MATCHING_RULE_2=Unable to retrieve \
 equality matching rule %s used as the default for the %s attribute syntax. \
 Equality matching will not be allowed by default for attributes with this \
 syntax
ERR_ATTR_SYNTAX_UNKNOWN_ORDERING_MATCHING_RULE_3=Unable to retrieve \
 ordering matching rule %s used as the default for the %s attribute syntax. \
 Ordering matches will not be allowed by default for attributes with this \
 syntax
ERR_ATTR_SYNTAX_UNKNOWN_SUBSTRING_MATCHING_RULE_4=Unable to retrieve \
 substring matching rule %s used as the default for the %s attribute syntax. \
 Substring matching will not be allowed by default for attributes with this \
 syntax
WARN_ATTR_SYNTAX_ILLEGAL_BOOLEAN_5=The provided value "%s" is not \
 allowed for attributes with a Boolean syntax.  The only allowed values are \
 'TRUE' and 'FALSE'
WARN_ATTR_SYNTAX_BIT_STRING_TOO_SHORT_6=The provided value "%s" is too \
 short to be a valid bit string.  A bit string must be a series of binary \
 digits surrounded by single quotes and followed by a capital letter B
WARN_ATTR_SYNTAX_BIT_STRING_NOT_QUOTED_7=The provided value "%s" is not \
 a valid bit string because it is not surrounded by single quotes and followed \
 by a capital letter B
WARN_ATTR_SYNTAX_BIT_STRING_INVALID_BIT_8=The provided value "%s" is \
 not a valid bit string because '%s' is not a valid binary digit
ERR_ATTR_SYNTAX_COUNTRY_STRING_INVALID_LENGTH_9=The provided value "%s" \
 is not a valid country string because the length is not exactly two characters
ERR_ATTR_SYNTAX_COUNTRY_STRING_NOT_PRINTABLE_10=The provided value "%s" \
 is not a valid country string because it contains one or more non-printable \
 characters
ERR_ATTR_SYNTAX_DELIVERY_METHOD_NO_ELEMENTS_11=The provided value "%s" is \
 not a valid delivery method value because it does not contain any elements
ERR_ATTR_SYNTAX_DELIVERY_METHOD_INVALID_ELEMENT_12=The provided value \
 "%s" is not a valid delivery method value because "%s" is not a valid method
WARN_ATTR_SYNTAX_GENERALIZED_TIME_TOO_SHORT_13=The provided value "%s" \
 is too short to be a valid generalized time value
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_YEAR_14=The provided value \
 "%s" is not a valid generalized time value because the '%s' character is not \
 allowed in the century or year specification
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_MONTH_15=The provided value \
 "%s" is not a valid generalized time value because "%s" is not a valid month \
 specification
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_DAY_16=The provided value \
 "%s" is not a valid generalized time value because "%s" is not a valid day \
 specification
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_HOUR_17=The provided value \
 "%s" is not a valid generalized time value because "%s" is not a valid hour \
 specification
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_MINUTE_18=The provided value \
 "%s" is not a valid generalized time value because "%s" is not a valid minute \
 specification
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_SECOND_19=The provided value \
 "%s" is not a valid generalized time value because "%s" is not a valid second \
 specification
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_OFFSET_22=The provided value \
 "%s" is not a valid generalized time value because "%s" is not a valid GMT \
 offset
WARN_ATTR_SYNTAX_GENERALIZED_TIME_INVALID_CHAR_23=The provided value \
 "%s" is not a valid generalized time value because it contains an invalid \
 character '%s' at position %d
ERR_ATTR_SYNTAX_DN_INVALID_25=The provided value "%s" could not be parsed \
 as a valid distinguished name:  %s
ERR_ATTR_SYNTAX_DN_END_WITH_COMMA_26=The provided value "%s" could not be \
 parsed as a valid distinguished name because the last non-space character was \
 a comma or semicolon
ERR_ATTR_SYNTAX_DN_ATTR_ILLEGAL_CHAR_28=The provided value "%s" could not \
 be parsed as a valid distinguished name because character '%c' at position %d \
 is not allowed in an attribute name
ERR_ATTR_SYNTAX_DN_ATTR_ILLEGAL_UNDERSCORE_CHAR_29=The provided value \
 "%s" could not be parsed as a valid distinguished name because the underscore \
 character is not allowed in an attribute name unless the %s configuration \
 option is enabled
ERR_ATTR_SYNTAX_DN_ATTR_ILLEGAL_INITIAL_DASH_30=The provided value "%s" \
 could not be parsed as a valid distinguished name because the hyphen \
 character is not allowed as the first character of an attribute name
ERR_ATTR_SYNTAX_DN_ATTR_ILLEGAL_INITIAL_UNDERSCORE_31=The provided value \
 "%s" could not be parsed as a valid distinguished name because the underscore \
 character is not allowed as the first character of an attribute name even if \
 the %s configuration option is enabled
ERR_ATTR_SYNTAX_DN_ATTR_ILLEGAL_INITIAL_DIGIT_32=The provided value "%s" \
 could not be parsed as a valid distinguished name because the digit '%c' is \
 not allowed as the first character of an attribute name unless the \
 name is specified as an OID or the %s configuration option is enabled
ERR_ATTR_SYNTAX_DN_ATTR_NO_NAME_33=The provided value "%s" could not be \
 parsed as a valid distinguished name because it contained an RDN containing \
 an empty attribute name
ERR_ATTR_SYNTAX_DN_ATTR_ILLEGAL_PERIOD_34=The provided value "%s" could \
 not be parsed as a valid distinguished name because the parsed attribute name \
 %s included a period but that name did not appear to be a valid OID
ERR_ATTR_SYNTAX_DN_END_WITH_ATTR_NAME_35=The provided value "%s" could \
 not be parsed as a valid distinguished name because the last non-space \
 character was part of the attribute name '%s'
ERR_ATTR_SYNTAX_DN_NO_EQUAL_36=The provided value "%s" could not be \
 parsed as a valid distinguished name because the next non-space character \
 after attribute name "%s" should have been an equal sign but instead was '%c'
ERR_ATTR_SYNTAX_DN_INVALID_CHAR_37=The provided value "%s" could not be \
 parsed as a valid distinguished name because character '%c' at position %d is \
 not valid
ERR_ATTR_SYNTAX_DN_HEX_VALUE_TOO_SHORT_38=The provided value "%s" could \
 not be parsed as a valid distinguished name because an attribute value \
 started with an octothorpe (#) but was not followed by a positive multiple of \
 two hexadecimal digits
ERR_ATTR_SYNTAX_DN_INVALID_HEX_DIGIT_39=The provided value "%s" could not \
 be parsed as a valid distinguished name because an attribute value started \
 with an octothorpe (#) but contained a character %c that was not a valid \
 hexadecimal digit
ERR_ATTR_SYNTAX_DN_ATTR_VALUE_DECODE_FAILURE_40=The provided value "%s" \
 could not be parsed as a valid distinguished name because an unexpected \
 failure occurred while attempting to parse an attribute value from one of the \
 RDN components:  "%s"
ERR_ATTR_SYNTAX_DN_UNMATCHED_QUOTE_41=The provided value "%s" could not \
 be parsed as a valid distinguished name because one of the RDN components \
 included a quoted value that did not have a corresponding closing quotation \
 mark
ERR_ATTR_SYNTAX_DN_ESCAPED_HEX_VALUE_INVALID_42=The provided value "%s" \
 could not be parsed as a valid distinguished name because one of the RDN \
 components included a value with an escaped hexadecimal digit that was not \
 followed by a second hexadecimal digit
WARN_ATTR_SYNTAX_INTEGER_INITIAL_ZERO_43=The provided value "%s" could \
 not be parsed as a valid integer because the first digit may not be zero \
 unless it is the only digit
WARN_ATTR_SYNTAX_INTEGER_MISPLACED_DASH_44=The provided value "%s" \
 could not be parsed as a valid integer because the dash may only appear if it \
 is the first character of the value followed by one or more digits
WARN_ATTR_SYNTAX_INTEGER_INVALID_CHARACTER_45=The provided value "%s" \
 could not be parsed as a valid integer because character '%c' at position %d \
 is not allowed in an integer value
WARN_ATTR_SYNTAX_INTEGER_EMPTY_VALUE_46=The provided value "%s" could \
 not be parsed as a valid integer because it did not contain any digits
WARN_ATTR_SYNTAX_INTEGER_DASH_NEEDS_VALUE_47=The provided value "%s" \
 could not be parsed as a valid integer because it contained only a dash not \
 followed by an integer value
ERR_ATTR_SYNTAX_ATTRTYPE_EMPTY_VALUE_52=The provided value could not be \
 parsed as a valid attribute type description because it was empty or \
 contained only whitespace
ERR_ATTR_SYNTAX_ATTRTYPE_EXPECTED_OPEN_PARENTHESIS_53=The provided value \
 "%s" could not be parsed as an attribute type description because an open \
 parenthesis was expected at position %d but instead a '%s' character was \
 found
ERR_ATTR_SYNTAX_ATTRTYPE_TRUNCATED_VALUE_54=The provided value "%s" \
 could not be parsed as an attribute type description because the end of the \
 value was encountered while the Directory Server expected more data to be \
 provided
ERR_ATTR_SYNTAX_ATTRTYPE_DOUBLE_PERIOD_IN_NUMERIC_OID_55=The provided \
 value "%s" could not be parsed as an attribute type description because the \
 numeric OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_ATTRTYPE_ILLEGAL_CHAR_IN_NUMERIC_OID_56=The provided \
 value "%s" could not be parsed as an attribute type description because the \
 numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_ATTRTYPE_ILLEGAL_CHAR_IN_STRING_OID_57=The provided \
 value "%s" could not be parsed as an attribute type description because the \
 non-numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_ATTRTYPE_ILLEGAL_CHAR_58=The provided value "%s" could \
 not be parsed as an attribute type description because it contained an \
 illegal character %s at position %d
ERR_ATTR_SYNTAX_ATTRTYPE_UNEXPECTED_CLOSE_PARENTHESIS_59=The provided \
 value "%s" could not be parsed as an attribute type description because it \
 contained an unexpected closing parenthesis at position %d
WARN_ATTR_SYNTAX_ATTRTYPE_UNKNOWN_SUPERIOR_TYPE_61=The definition for \
 the attribute type with OID %s declared a superior type with an OID of %s. \
 No attribute type with this OID exists in the server schema
WARN_ATTR_SYNTAX_ATTRTYPE_UNKNOWN_APPROXIMATE_MR_62=The definition for \
 the attribute type with OID %s declared that approximate matching should be \
 performed using the matching rule "%s".  No such approximate matching rule is \
 configured for use in the Directory Server
WARN_ATTR_SYNTAX_ATTRTYPE_UNKNOWN_EQUALITY_MR_63=The definition for \
 the attribute type with OID %s declared that equality matching should be \
 performed using the matching rule "%s".  No such equality matching rule is \
 configured for use in the Directory Server
WARN_ATTR_SYNTAX_ATTRTYPE_UNKNOWN_ORDERING_MR_64=The definition for \
 the attribute type with OID %s declared that ordering matching should be \
 performed using the matching rule "%s".  No such ordering matching rule is \
 configured for use in the Directory Server
WARN_ATTR_SYNTAX_ATTRTYPE_UNKNOWN_SUBSTRING_MR_65=The definition for \
 the attribute type with OID %s declared that substring matching should be \
 performed using the matching rule "%s".  No such substring matching rule is \
 configured for use in the Directory Server
WARN_ATTR_SYNTAX_ATTRTYPE_UNKNOWN_SYNTAX_66=The definition for the \
 attribute type with OID %s declared that it should have a syntax with OID %s. \
 No such syntax is configured for use in the Directory Server
WARN_ATTR_SYNTAX_ATTRTYPE_INVALID_ATTRIBUTE_USAGE_67=The definition \
 for the attribute type with OID %s declared that it should have an attribute \
 usage of %s.  This is an invalid usage
WARN_ATTR_SYNTAX_ATTRTYPE_EXPECTED_QUOTE_AT_POS_68=The provided value \
 "%s" could not be parsed as an attribute type description because a single \
 quote was expected at position %d but the character %s was found instead
ERR_ATTR_SYNTAX_OBJECTCLASS_EMPTY_VALUE_69=The provided value could not \
 be parsed as a valid objectclass description because it was empty or \
 contained only whitespace
ERR_ATTR_SYNTAX_OBJECTCLASS_EXPECTED_OPEN_PARENTHESIS_70=The provided \
 value "%s" could not be parsed as an objectclass description because an open \
 parenthesis was expected at position %d but instead a '%s' character was \
 found
ERR_ATTR_SYNTAX_OBJECTCLASS_TRUNCATED_VALUE_71=The provided value "%s" \
 could not be parsed as an objectclass description because the end of the \
 value was encountered while the Directory Server expected more data to be \
 provided
ERR_ATTR_SYNTAX_OBJECTCLASS_DOUBLE_PERIOD_IN_NUMERIC_OID_72=The provided \
 value "%s" could not be parsed as an objectclass description because the \
 numeric OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_OBJECTCLASS_ILLEGAL_CHAR_IN_NUMERIC_OID_73=The provided \
 value "%s" could not be parsed as an objectclass description because the \
 numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_OBJECTCLASS_ILLEGAL_CHAR_IN_STRING_OID_74=The provided \
 value "%s" could not be parsed as an objectclass description because the \
 non-numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_OBJECTCLASS_ILLEGAL_CHAR_75=The provided value "%s" \
 could not be parsed as an objectclass description because it contained an \
 illegal character %s at position %d
ERR_ATTR_SYNTAX_OBJECTCLASS_UNEXPECTED_CLOSE_PARENTHESIS_76=The provided \
 value "%s" could not be parsed as an objectclass description because it \
 contained an unexpected closing parenthesis at position %d
WARN_ATTR_SYNTAX_OBJECTCLASS_UNKNOWN_SUPERIOR_CLASS_78=The definition \
 for the objectclass with OID %s declared a superior objectclass with an OID \
 of %s.  No objectclass with this OID exists in the server schema
WARN_ATTR_SYNTAX_OBJECTCLASS_EXPECTED_QUOTE_AT_POS_79=The provided \
 value "%s" could not be parsed as an objectclass description because a single \
 quote was expected at position %d but the character %s was found instead
WARN_ATTR_SYNTAX_OBJECTCLASS_UNKNOWN_REQUIRED_ATTR_80=The definition \
 for the objectclass with OID %s declared that it should include required \
 attribute "%s".  No attribute type matching this name or OID exists in the \
 server schema
WARN_ATTR_SYNTAX_OBJECTCLASS_UNKNOWN_OPTIONAL_ATTR_81=The definition \
 for the objectclass with OID %s declared that it should include optional \
 attribute "%s".  No attribute type matching this name or OID exists in the \
 server schema
WARN_ATTR_SYNTAX_IA5_ILLEGAL_CHARACTER_82=The provided value "%s" \
 cannot be parsed as a valid IA5 string because it contains an illegal \
 character "%s" that is not allowed in the IA5 (ASCII) character set
ERR_ATTR_SYNTAX_TELEPHONE_EMPTY_85=The provided value is not a valid \
 telephone number because it is empty or null
ERR_ATTR_SYNTAX_TELEPHONE_NO_PLUS_86=The provided value "%s" is not a \
 valid telephone number because strict telephone number checking is enabled \
 and the value does not start with a plus sign in compliance with the ITU-T \
 E.123 specification
ERR_ATTR_SYNTAX_TELEPHONE_ILLEGAL_CHAR_87=The provided value "%s" is not \
 a valid telephone number because strict telephone number checking is enabled \
 and the character %s at position %d is not allowed by the ITU-T E.123 \
 specification
ERR_ATTR_SYNTAX_TELEPHONE_NO_DIGITS_88=The provided value "%s" is not a \
 valid telephone number because it does not contain any numeric digits
WARN_ATTR_SYNTAX_NUMERIC_STRING_ILLEGAL_CHAR_90=The provided value \
 "%s" is not a valid numeric string because it contained character %s at \
 position %d that was neither a digit nor a space
ERR_ATTR_SYNTAX_NUMERIC_STRING_EMPTY_VALUE_91=The provided value is not \
 a valid numeric string because it did not contain any characters.  A numeric \
 string value must contain at least one numeric digit or space
WARN_ATTR_SYNTAX_PRINTABLE_STRING_EMPTY_VALUE_105=The provided value \
 could not be parsed as a printable string because it was null or empty.  A \
 printable string must contain at least one character
WARN_ATTR_SYNTAX_PRINTABLE_STRING_ILLEGAL_CHARACTER_106=The provided \
 value "%s" could not be parsed as a printable string because it contained an \
 invalid character %s at position %d
WARN_ATTR_SYNTAX_SUBSTRING_ONLY_WILDCARD_107=The provided value "*" \
 could not be parsed as a substring assertion because it consists only of a \
 wildcard character and zero-length substrings are not allowed
WARN_ATTR_SYNTAX_SUBSTRING_CONSECUTIVE_WILDCARDS_108=The provided \
 value "%s" could not be parsed as a substring assertion because it contains \
 consecutive wildcard characters at position %d and zero-length substrings are \
 not allowed
ERR_ATTR_SYNTAX_UTC_TIME_TOO_SHORT_109=The provided value %s is too \
 short to be a valid UTC time value
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_YEAR_110=The provided value %s is not a \
 valid UTC time value because the %s character is not allowed in the century \
 or year specification
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_MONTH_111=The provided value %s is not \
 a valid UTC time value because %s is not a valid month specification
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_DAY_112=The provided value %s is not a \
 valid UTC time value because %s is not a valid day specification
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_HOUR_113=The provided value %s is not a \
 valid UTC time value because %s is not a valid hour specification
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_MINUTE_114=The provided value %s is not \
 a valid UTC time value because %s is not a valid minute specification
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_CHAR_115=The provided value %s is not a \
 valid UTC time value because it contains an invalid character %s at position \
 %d
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_SECOND_116=The provided value %s is not \
 a valid UTC time value because %s is not a valid second specification
ERR_ATTR_SYNTAX_UTC_TIME_INVALID_OFFSET_117=The provided value %s is not \
 a valid UTC time value because %s is not a valid GMT offset
ERR_ATTR_SYNTAX_UTC_TIME_CANNOT_PARSE_118=The provided value %s could \
 not be parsed as a valid UTC time:  %s
ERR_ATTR_SYNTAX_DCR_EMPTY_VALUE_119=The provided value could not be \
 parsed as a valid DIT content rule description because it was empty or \
 contained only whitespace
ERR_ATTR_SYNTAX_DCR_EXPECTED_OPEN_PARENTHESIS_120=The provided value \
 "%s" could not be parsed as a DIT content rule description because an open \
 parenthesis was expected at position %d but instead a '%s' character was \
 found
ERR_ATTR_SYNTAX_DCR_TRUNCATED_VALUE_121=The provided value "%s" could \
 not be parsed as a DIT content rule description because the end of the value \
 was encountered while the Directory Server expected more data to be provided
ERR_ATTR_SYNTAX_DCR_DOUBLE_PERIOD_IN_NUMERIC_OID_122=The provided value \
 "%s" could not be parsed as a DIT content rule description because the \
 numeric OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_DCR_ILLEGAL_CHAR_IN_NUMERIC_OID_123=The provided value \
 "%s" could not be parsed as a DIT content rule description because the \
 numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_DCR_ILLEGAL_CHAR_IN_STRING_OID_124=The provided value \
 "%s" could not be parsed as a DIT content rule description because the \
 non-numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_DCR_UNEXPECTED_CLOSE_PARENTHESIS_125=The provided value \
 "%s" could not be parsed as a DIT content rule description because it \
 contained an unexpected closing parenthesis at position %d
ERR_ATTR_SYNTAX_DCR_ILLEGAL_CHAR_126=The provided value "%s" could not \
 be parsed as a DIT content rule description because it contained an illegal \
 character %s at position %d
ERR_ATTR_SYNTAX_DCR_UNKNOWN_STRUCTURAL_CLASS_127=The DIT content rule \
 "%s" is associated with a structural objectclass %s that is not defined in \
 the server schema
ERR_ATTR_SYNTAX_DCR_STRUCTURAL_CLASS_NOT_STRUCTURAL_128=The DIT content \
 rule "%s" is associated with the objectclass with OID %s (%s).  This \
 objectclass exists in the server schema but is defined as %s rather than \
 structural
ERR_ATTR_SYNTAX_DCR_UNKNOWN_AUXILIARY_CLASS_129=The DIT content rule \
 "%s" is associated with an auxiliary objectclass %s that is not defined in \
 the server schema
ERR_ATTR_SYNTAX_DCR_AUXILIARY_CLASS_NOT_AUXILIARY_130=The DIT content \
 rule "%s" is associated with an auxiliary objectclass %s.  This objectclass \
 exists in the server schema but is defined as %s rather than auxiliary
ERR_ATTR_SYNTAX_DCR_UNKNOWN_REQUIRED_ATTR_131=The DIT content rule "%s" \
 is associated with a required attribute type %s that is not defined in the \
 server schema
ERR_ATTR_SYNTAX_DCR_UNKNOWN_OPTIONAL_ATTR_132=The DIT content rule "%s" \
 is associated with an optional attribute type %s that is not defined in the \
 server schema
ERR_ATTR_SYNTAX_DCR_UNKNOWN_PROHIBITED_ATTR_133=The DIT content rule \
 "%s" is associated with a prohibited attribute type %s that is not defined in \
 the server schema
ERR_ATTR_SYNTAX_DCR_EXPECTED_QUOTE_AT_POS_134=The provided value "%s" \
 could not be parsed as a DIT content rule description because a single quote \
 was expected at position %d but the %s character was found instead
ERR_ATTR_SYNTAX_NAME_FORM_EMPTY_VALUE_135=The provided value could not \
 be parsed as a valid name form description because it was empty or contained \
 only whitespace
ERR_ATTR_SYNTAX_NAME_FORM_EXPECTED_OPEN_PARENTHESIS_136=The provided \
 value "%s" could not be parsed as a name form description because an open \
 parenthesis was expected at position %d but instead a '%c' character was \
 found
ERR_ATTR_SYNTAX_NAME_FORM_TRUNCATED_VALUE_137=The provided value "%s" \
 could not be parsed as a name form description because the end of the value \
 was encountered while the Directory Server expected more data to be provided
ERR_ATTR_SYNTAX_NAME_FORM_DOUBLE_PERIOD_IN_NUMERIC_OID_138=The provided \
 value "%s" could not be parsed as a name form description because the numeric \
 OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_NAME_FORM_ILLEGAL_CHAR_IN_NUMERIC_OID_139=The provided \
 value "%s" could not be parsed as a name form description because the numeric \
 OID contained an illegal character %c at position %d
ERR_ATTR_SYNTAX_NAME_FORM_ILLEGAL_CHAR_IN_STRING_OID_140=The provided \
 value "%s" could not be parsed as a name form description because the \
 non-numeric OID contained an illegal character %c at position %d
ERR_ATTR_SYNTAX_NAME_FORM_UNEXPECTED_CLOSE_PARENTHESIS_141=The provided \
 value "%s" could not be parsed as a name form description because it \
 contained an unexpected closing parenthesis at position %d
ERR_ATTR_SYNTAX_NAME_FORM_ILLEGAL_CHAR_142=The provided value "%s" could \
 not be parsed as a name form description because it contained an illegal \
 character %c at position %d
ERR_ATTR_SYNTAX_NAME_FORM_UNKNOWN_STRUCTURAL_CLASS_143=The name form \
 description "%s" is associated with a structural objectclass %s that is not \
 defined in the server schema
ERR_ATTR_SYNTAX_NAME_FORM_STRUCTURAL_CLASS_NOT_STRUCTURAL_144=The name \
 form description "%s" is associated with the objectclass with OID %s (%s). \
 This objectclass exists in the server schema but is defined as %s rather than \
 structural
ERR_ATTR_SYNTAX_NAME_FORM_UNKNOWN_REQUIRED_ATTR_145=The definition for \
 the name form with OID %s declared that it should include required attribute \
 "%s".  No attribute type matching this name or OID exists in the server \
 schema
ERR_ATTR_SYNTAX_NAME_FORM_UNKNOWN_OPTIONAL_ATTR_146=The definition for \
 the name form with OID %s declared that it should include optional attribute \
 "%s".  No attribute type matching this name or OID exists in the server \
 schema
ERR_ATTR_SYNTAX_NAME_FORM_NO_STRUCTURAL_CLASS_147=The provided value \
 "%s" could not be parsed as a name form description because it does not \
 specify the structural objectclass with which it is associated
ERR_ATTR_SYNTAX_NAME_FORM_EXPECTED_QUOTE_AT_POS_148=The provided value \
 "%s" could not be parsed as a name form description because a single quote \
 was expected at position %d but the %c character was found instead
ERR_ATTR_SYNTAX_MR_EMPTY_VALUE_149=The provided value could not be \
 parsed as a valid matching rule description because it was empty or contained \
 only whitespace
ERR_ATTR_SYNTAX_MR_EXPECTED_OPEN_PARENTHESIS_150=The provided value "%s" \
 could not be parsed as a matching rule description because an open \
 parenthesis was expected at position %d but instead a '%s' character was \
 found
ERR_ATTR_SYNTAX_MR_TRUNCATED_VALUE_151=The provided value "%s" could not \
 be parsed as a matching rule description because the end of the value was \
 encountered while the Directory Server expected more data to be provided
ERR_ATTR_SYNTAX_MR_DOUBLE_PERIOD_IN_NUMERIC_OID_152=The provided value \
 "%s" could not be parsed as a matching rule description because the numeric \
 OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_MR_ILLEGAL_CHAR_IN_NUMERIC_OID_153=The provided value \
 "%s" could not be parsed as a matching rule description because the numeric \
 OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_MR_ILLEGAL_CHAR_IN_STRING_OID_154=The provided value \
 "%s" could not be parsed as a matching rule description because the \
 non-numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_MR_UNEXPECTED_CLOSE_PARENTHESIS_155=The provided value \
 "%s" could not be parsed as a matching rule description because it contained \
 an unexpected closing parenthesis at position %d
ERR_ATTR_SYNTAX_MR_ILLEGAL_CHAR_156=The provided value "%s" could not be \
 parsed as a matching rule description because it contained an illegal \
 character %s at position %d
ERR_ATTR_SYNTAX_MR_UNKNOWN_SYNTAX_157=The matching rule description "%s" \
 is associated with attribute syntax %s that is not defined in the server \
 schema
ERR_ATTR_SYNTAX_MR_NO_SYNTAX_158=The provided value "%s" could not be \
 parsed as a matching rule description because it does not specify the \
 attribute syntax with which it is associated
ERR_ATTR_SYNTAX_MR_EXPECTED_QUOTE_AT_POS_159=The provided value "%s" \
 could not be parsed as a matching rule description because a single quote was \
 expected at position %d but the %s character was found instead
ERR_ATTR_SYNTAX_MRUSE_EMPTY_VALUE_160=The provided value could not be \
 parsed as a valid matching rule use description because it was empty or \
 contained only whitespace
ERR_ATTR_SYNTAX_MRUSE_EXPECTED_OPEN_PARENTHESIS_161=The provided value \
 "%s" could not be parsed as a matching rule use description because an open \
 parenthesis was expected at position %d but instead a '%s' character was \
 found
ERR_ATTR_SYNTAX_MRUSE_TRUNCATED_VALUE_162=The provided value "%s" could \
 not be parsed as a matching rule use description because the end of the value \
 was encountered while the Directory Server expected more data to be provided
ERR_ATTR_SYNTAX_MRUSE_DOUBLE_PERIOD_IN_NUMERIC_OID_163=The provided \
 value "%s" could not be parsed as a matching rule use description because the \
 numeric OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_MRUSE_ILLEGAL_CHAR_IN_NUMERIC_OID_164=The provided value \
 "%s" could not be parsed as a matching rule use description because the \
 numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_MRUSE_ILLEGAL_CHAR_IN_STRING_OID_165=The provided value \
 "%s" could not be parsed as a matching rule use description because the \
 non-numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_MRUSE_UNKNOWN_MATCHING_RULE_166=The provided value "%s" \
 could not be parsed as a matching rule use description because the specified \
 matching rule %s is unknown
ERR_ATTR_SYNTAX_MRUSE_UNEXPECTED_CLOSE_PARENTHESIS_167=The provided \
 value "%s" could not be parsed as a matching rule use description because it \
 contained an unexpected closing parenthesis at position %d
ERR_ATTR_SYNTAX_MRUSE_ILLEGAL_CHAR_168=The provided value "%s" could not \
 be parsed as a matching rule use description because it contained an illegal \
 character %s at position %d
ERR_ATTR_SYNTAX_MRUSE_UNKNOWN_ATTR_169=The matching rule use description \
 "%s" is associated with attribute type %s that is not defined in the server \
 schema
ERR_ATTR_SYNTAX_MRUSE_NO_ATTR_170=The provided value "%s" could not be \
 parsed as a matching rule description because it does not specify the set of \
 attribute types that may be used with the associated OID
ERR_ATTR_SYNTAX_MRUSE_EXPECTED_QUOTE_AT_POS_171=The provided value "%s" \
 could not be parsed as a matching rule use description because a single quote \
 was expected at position %d but the %s character was found instead
ERR_ATTR_SYNTAX_DSR_EMPTY_VALUE_172=The provided value could not be \
 parsed as a valid DIT structure rule description because it was empty or \
 contained only whitespace
ERR_ATTR_SYNTAX_DSR_EXPECTED_OPEN_PARENTHESIS_173=The provided value \
 "%s" could not be parsed as a DIT structure rule description because an open \
 parenthesis was expected at position %d but instead a '%s' character was \
 found
ERR_ATTR_SYNTAX_DSR_TRUNCATED_VALUE_174=The provided value "%s" could \
 not be parsed as a DIT structure rule description because the end of the \
 value was encountered while the Directory Server expected more data to be \
 provided
ERR_ATTR_SYNTAX_DSR_ILLEGAL_CHAR_IN_RULE_ID_175=The provided value "%s" \
 could not be parsed as a DIT structure rule description because the rule ID \
 contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_DSR_UNEXPECTED_CLOSE_PARENTHESIS_176=The provided value \
 "%s" could not be parsed as a DIT structure rule description because it \
 contained an unexpected closing parenthesis at position %d
ERR_ATTR_SYNTAX_DSR_ILLEGAL_CHAR_177=The provided value "%s" could not \
 be parsed as a DIT structure rule description because it contained an illegal \
 character %s at position %d
ERR_ATTR_SYNTAX_DSR_UNKNOWN_NAME_FORM_178=The provided value "%s" could \
 not be parsed as a DIT structure rule description because it referenced an \
 unknown name form %s
ERR_ATTR_SYNTAX_DSR_UNKNOWN_RULE_ID_179=The provided value "%s" could \
 not be parsed as a DIT structure rule description because it referenced an \
 unknown rule ID %d for a superior DIT structure rule
ERR_ATTR_SYNTAX_DSR_NO_NAME_FORM_180=The provided value "%s" could not \
 be parsed as a DIT structure rule description because it did not specify the \
 name form for the rule
ERR_ATTR_SYNTAX_DSR_EXPECTED_QUOTE_AT_POS_181=The provided value "%s" \
 could not be parsed as a DIT structure rule description because a single \
 quote was expected at position %d but the %s character was found instead
ERR_ATTR_SYNTAX_DSR_DOUBLE_PERIOD_IN_NUMERIC_OID_182=The provided value \
 "%s" could not be parsed as a DIT structure rule description because the \
 numeric OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_DSR_ILLEGAL_CHAR_IN_NUMERIC_OID_183=The provided value \
 "%s" could not be parsed as a DIT structure rule description because the \
 numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_DSR_ILLEGAL_CHAR_IN_STRING_OID_184=The provided value \
 "%s" could not be parsed as a DIT structure rule description because the \
 non-numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_TELEX_TOO_SHORT_185=The provided value "%s" is too short \
 to be a valid telex number value
ERR_ATTR_SYNTAX_TELEX_NOT_PRINTABLE_186=The provided value "%s" does not \
 hold a valid telex number because a character %s at position %d was not a \
 valid printable string character
ERR_ATTR_SYNTAX_TELEX_ILLEGAL_CHAR_187=The provided value "%s" does not \
 hold a valid telex number because character %s at position %d was neither a \
 valid printable string character nor a dollar sign to separate the telex \
 number components
ERR_ATTR_SYNTAX_TELEX_TRUNCATED_188=The provided value "%s" does not \
 hold a valid telex number because the end of the value was found before three \
 dollar-delimited printable strings could be read
ERR_ATTR_SYNTAX_FAXNUMBER_EMPTY_189=The provided value could not be \
 parsed as a valid facsimile telephone number because it was empty
ERR_ATTR_SYNTAX_FAXNUMBER_NOT_PRINTABLE_190=The provided value "%s" \
 could not be parsed as a valid facsimile telephone number because character \
 %s at position %d was not a valid printable string character
ERR_ATTR_SYNTAX_FAXNUMBER_END_WITH_DOLLAR_191=The provided value "%s" \
 could not be parsed as a valid facsimile telephone number because it ends \
 with a dollar sign, but that dollar sign should have been followed by a fax \
 parameter
ERR_ATTR_SYNTAX_FAXNUMBER_ILLEGAL_PARAMETER_192=The provided value "%s" \
 could not be parsed as a valid facsimile telephone number because the string \
 "%s" between positions %d and %d was not a valid fax parameter
ERR_ATTR_SYNTAX_NAMEANDUID_INVALID_DN_193=The provided value "%s" could \
 not be parsed as a valid name and optional UID value because an error \
 occurred while trying to parse the DN portion:  %s
ERR_ATTR_SYNTAX_NAMEANDUID_ILLEGAL_BINARY_DIGIT_194=The provided value \
 "%s" could not be parsed as a valid name and optional UID value because the \
 UID portion contained an illegal binary digit %s at position %d
ERR_ATTR_SYNTAX_TELETEXID_EMPTY_195=The provided value could not be \
 parsed as a valid teletex terminal identifier because it was empty
ERR_ATTR_SYNTAX_TELETEXID_NOT_PRINTABLE_196=The provided value "%s" \
 could not be parsed as a valid teletex terminal identifier because character \
 %s at position %d was not a valid printable string character
ERR_ATTR_SYNTAX_TELETEXID_END_WITH_DOLLAR_197=The provided value "%s" \
 could not be parsed as a valid teletex terminal identifier because it ends \
 with a dollar sign, but that dollar sign should have been followed by a TTX \
 parameter
ERR_ATTR_SYNTAX_TELETEXID_PARAM_NO_COLON_198=The provided value "%s" \
 could not be parsed as a valid teletex terminal identifier because the \
 parameter string does not contain a colon to separate the name from the value
ERR_ATTR_SYNTAX_TELETEXID_ILLEGAL_PARAMETER_199=The provided value "%s" \
 could not be parsed as a valid teletex terminal identifier because the string \
 "%s" is not a valid TTX parameter name
ERR_ATTR_SYNTAX_OTHER_MAILBOX_EMPTY_VALUE_200=The provided value could \
 not be parsed as an other mailbox value because it was empty
ERR_ATTR_SYNTAX_OTHER_MAILBOX_NO_MBTYPE_201=The provided value "%s" \
 could not be parsed as an other mailbox value because there was no mailbox \
 type before the dollar sign
ERR_ATTR_SYNTAX_OTHER_MAILBOX_ILLEGAL_MBTYPE_CHAR_202=The provided value \
 "%s" could not be parsed as an other mailbox value because the mailbox type \
 contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_OTHER_MAILBOX_NO_MAILBOX_203=The provided value "%s" \
 could not be parsed as an other mailbox value because there was no mailbox \
 after the dollar sign
ERR_ATTR_SYNTAX_OTHER_MAILBOX_ILLEGAL_MB_CHAR_204=The provided value \
 "%s" could not be parsed as an other mailbox value because the mailbox \
 contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_GUIDE_NO_OC_205=The provided value "%s" could not be \
 parsed as a guide value because it did not contain an objectclass name or OID \
 before the octothorpe (#) character
ERR_ATTR_SYNTAX_GUIDE_ILLEGAL_CHAR_206=The provided value "%s" could not \
 be parsed as a guide value because the criteria portion %s contained an \
 illegal character %c at position %d
ERR_ATTR_SYNTAX_GUIDE_MISSING_CLOSE_PAREN_207=The provided value "%s" \
 could not be parsed as a guide value because the criteria portion %s did not \
 contain a close parenthesis that corresponded to the initial open parenthesis
ERR_ATTR_SYNTAX_GUIDE_INVALID_QUESTION_MARK_208=The provided value "%s" \
 could not be parsed as a guide value because the criteria portion %s started \
 with a question mark but was not followed by the string "true" or "false"
ERR_ATTR_SYNTAX_GUIDE_NO_DOLLAR_209=The provided value "%s" could not be \
 parsed as a guide value because the criteria portion %s did not contain a \
 dollar sign to separate the attribute type from the match type
ERR_ATTR_SYNTAX_GUIDE_NO_ATTR_210=The provided value "%s" could not be \
 parsed as a guide value because the criteria portion %s did not specify an \
 attribute type before the dollar sign
ERR_ATTR_SYNTAX_GUIDE_NO_MATCH_TYPE_211=The provided value "%s" could \
 not be parsed as a guide value because the criteria portion %s did not \
 specify a match type after the dollar sign
ERR_ATTR_SYNTAX_GUIDE_INVALID_MATCH_TYPE_212=The provided value "%s" \
 could not be parsed as a guide value because the criteria portion %s had an \
 invalid match type starting at position %d
ERR_ATTR_SYNTAX_ENHANCEDGUIDE_NO_SHARP_213=The provided value "%s" could \
 not be parsed as an enhanced guide value because it did not contain an \
 octothorpe (#) character to separate the objectclass from the criteria
ERR_ATTR_SYNTAX_ENHANCEDGUIDE_NO_OC_214=The provided value "%s" could \
 not be parsed as an enhanced guide value because it did not contain an \
 objectclass name or OID before the octothorpe (#) character
ERR_ATTR_SYNTAX_ENHANCEDGUIDE_NO_FINAL_SHARP_218=The provided value "%s" \
 could not be parsed as an enhanced guide value because it did not have an \
 octothorpe (#) character to separate the criteria from the scope
ERR_ATTR_SYNTAX_ENHANCEDGUIDE_NO_SCOPE_219=The provided value "%s" could \
 not be parsed as an enhanced guide value because no scope was provided after \
 the final octothorpe (#) character
ERR_ATTR_SYNTAX_ENHANCEDGUIDE_INVALID_SCOPE_220=The provided value "%s" \
 could not be parsed as an enhanced guide value because the specified scope %s \
 was invalid
ERR_ATTR_SYNTAX_ENHANCEDGUIDE_NO_CRITERIA_221=The provided value "%s" \
 could not be parsed as an enhanced guide value because it did not specify any \
 criteria between the octothorpe (#) characters
ERR_ATTR_SYNTAX_OID_INVALID_VALUE_222=The provided value %s could not be \
 parsed as a valid OID:  %s
WARN_ATTR_SYNTAX_UUID_INVALID_LENGTH_236=The provided value "%s" has \
 an invalid length for a UUID.  All UUID values must have a length of exactly \
 36 bytes, but the provided value had a length of %d bytes
WARN_ATTR_SYNTAX_UUID_EXPECTED_DASH_237=The provided value "%s" should \
 have had a dash at position %d, but the character '%s' was found instead
WARN_ATTR_SYNTAX_UUID_EXPECTED_HEX_238=The provided value "%s" should \
 have had a hexadecimal digit at position %d, but the character '%s' was found \
 instead
ERR_ATTR_SYNTAX_DIRECTORYSTRING_INVALID_ZEROLENGTH_VALUE_241=The \
 operation attempted to assign a zero-length value to an attribute with the \
 directory string syntax
ERR_ATTR_SYNTAX_AUTHPW_INVALID_SCHEME_CHAR_243=The provided \
 authPassword value had an invalid scheme character at position %d
ERR_ATTR_SYNTAX_AUTHPW_NO_SCHEME_244=The provided authPassword value \
 had a zero-length scheme element
ERR_ATTR_SYNTAX_AUTHPW_NO_SCHEME_SEPARATOR_245=The provided \
 authPassword value was missing the separator character or had an illegal \
 character between the scheme and authInfo elements
ERR_ATTR_SYNTAX_AUTHPW_INVALID_AUTH_INFO_CHAR_246=The provided \
 authPassword value had an invalid authInfo character at position %d
ERR_ATTR_SYNTAX_AUTHPW_NO_AUTH_INFO_247=The provided authPassword \
 value had a zero-length authInfo element
ERR_ATTR_SYNTAX_AUTHPW_NO_AUTH_INFO_SEPARATOR_248=The provided \
 authPassword value was missing the separator character or had an illegal \
 character between the authInfo and authValue elements
ERR_EMR_INTFIRSTCOMP_NO_INITIAL_PARENTHESIS_249=The provided value \
 "%s" could not be parsed by the integer first component matching rule because \
 it did not start with a parenthesis
ERR_EMR_INTFIRSTCOMP_NO_NONSPACE_250=The provided value "%s" could not \
 be parsed by the integer first component matching rule because it did not \
 have any non-space characters after the opening parenthesis
ERR_EMR_INTFIRSTCOMP_NO_SPACE_AFTER_INT_251=The provided value "%s" \
 could not be parsed by the integer first component matching rule because it \
 did not have any space characters after the first component
ERR_EMR_INTFIRSTCOMP_FIRST_COMPONENT_NOT_INT_252=The provided value \
 "%s" could not be parsed by the integer first component matching rule because \
 the first component does not appear to be an integer value
ERR_ATTR_SYNTAX_USERPW_NO_VALUE_253=No value was given to decode by \
 the user password attribute syntax
ERR_ATTR_SYNTAX_USERPW_NO_OPENING_BRACE_254=Unable to decode the \
 provided value according to the user password syntax because the value does \
 not start with the opening curly brace ("{") character
ERR_ATTR_SYNTAX_USERPW_NO_CLOSING_BRACE_255=Unable to decode the \
 provided value according to the user password syntax because the value does \
 not contain a closing curly brace ("}") character
ERR_ATTR_SYNTAX_USERPW_NO_SCHEME_256=Unable to decode the provided \
 value according to the user password syntax because the value does not \
 contain a storage scheme name
ERR_ATTR_SYNTAX_RFC3672_SUBTREE_SPECIFICATION_INVALID_257=The provided \
 value "%s" could not be parsed as a valid RFC 3672 subtree specification
WARN_ATTR_SYNTAX_ILLEGAL_INTEGER_260=The provided value %s is not \
 allowed for attributes with a Integer syntax
ERR_ATTR_SYNTAX_AUTHPW_INVALID_AUTH_VALUE_CHAR_261=The provided \
 authPassword value had an invalid authValue character at position %d
ERR_ATTR_SYNTAX_AUTHPW_NO_AUTH_VALUE_262=The provided authPassword \
 value had a zero-length authValue element
ERR_ATTR_SYNTAX_AUTHPW_INVALID_TRAILING_CHAR_263=The provided \
 authPassword value had an invalid trailing character at position %d
ERR_ATTR_SYNTAX_ATTRSYNTAX_EXTENSION_INVALID_CHARACTER_264=The provided \
 value "%s" could not be parsed as an attribute syntax extension because an \
 invalid character was found at position %d
WARN_ATTR_SYNTAX_OBJECTCLASS_INVALID_SUPERIOR_TYPE_266=The definition \
 for objectclass %s is invalid because it has an objectclass type of %s but \
 this is incompatible with the objectclass type %s for the superior class %s
WARN_ATTR_SYNTAX_OBJECTCLASS_STRUCTURAL_SUPERIOR_NOT_TOP_267=The \
 definition for objectclass %s is invalid because it is defined as a \
 structural class but its superior chain does not include the "top" \
 objectclass
WARN_ATTR_SYNTAX_ATTRTYPE_INVALID_SUPERIOR_USAGE_268=The definition \
 for attribute type %s is invalid because its attribute usage %s is not the \
 same as the usage for its superior type %s
ERR_ATTR_SYNTAX_SUBTREE_SPECIFICATION_INVALID_269=The provided \
 value "%s" could not be parsed as a valid subtree specification
WARN_ATTR_SYNTAX_ATTRTYPE_NONCOLLECTIVE_FROM_COLLECTIVE_270=The \
 definition for attribute type %s is invalid because it is not defined as a \
 collective type but the superior type %s is collective
ERR_ATTR_SYNTAX_DCR_PROHIBITED_REQUIRED_BY_STRUCTURAL_271=The DIT \
 content rule "%s" is not valid because it prohibits the use of attribute type \
 %s which is required by the associated structural object class %s
ERR_ATTR_SYNTAX_DCR_PROHIBITED_REQUIRED_BY_AUXILIARY_272=The DIT content \
 rule "%s" is not valid because it prohibits the use of attribute type %s \
 which is required by the associated auxiliary object class %s
WARN_ATTR_SYNTAX_ATTRTYPE_NO_USER_MOD_NOT_OPERATIONAL_274=The \
 definition for attribute type %s is invalid because it is declared \
 NO-USER-MODIFICATION but does not have an operational usage
WARN_ATTR_SYNTAX_GENERALIZED_TIME_ILLEGAL_FRACTION_CHAR_275=The \
 provided value %s is not a valid generalized time value because it contains \
 illegal character %s in the fraction component
WARN_ATTR_SYNTAX_GENERALIZED_TIME_EMPTY_FRACTION_276=The provided \
 value %s is not a valid generalized time value because it does not contain at \
 least one digit after the period to use as the fractional component
WARN_ATTR_SYNTAX_GENERALIZED_TIME_NO_TIME_ZONE_INFO_277=The provided \
 value %s is not a valid generalized time value because it does not end with \
 'Z' or a time zone offset
WARN_ATTR_SYNTAX_GENERALIZED_TIME_ILLEGAL_TIME_278=The provided value \
 %s is not a valid generalized time value because it represents an invalid \
 time (e.g., a date that does not exist):  %s
NOTE_SCHEMA_IMPORT_FAILED_279=A schema element could not be imported: %s, %s
WARN_ATTR_INVALID_COLLATION_MATCHING_RULE_LOCALE_280=The collation \
 rule %s under matching rule entry %s is invalid as the locale %s is not supported \
 by JVM
WARN_ATTR_INVALID_COLLATION_MATCHING_RULE_FORMAT_281=The provided \
 collation rule %s does not contain a valid format of OID:LOCALE
ERR_ATTR_SYNTAX_DN_INVALID_REQUIRES_ESCAPE_CHAR_282=The provided \
 value "%s" could not be parsed as a valid distinguished name because an \
 attribute value started with a character at position %d that needs to be escaped
ERR_ATTR_SYNTAX_ATTR_ILLEGAL_CHAR_283=The provided value "%s" could not \
 be parsed as a valid attribute type definition because character '%c' at \
 position %d is not allowed in an attribute type name
ERR_ATTR_SYNTAX_ATTR_ILLEGAL_UNDERSCORE_CHAR_284=The provided value \
 "%s" could not be parsed as a valid attribute type definition because the \
 underscore character is not allowed in an attribute type name unless the \
 %s configuration option is enabled
ERR_ATTR_SYNTAX_ATTR_ILLEGAL_INITIAL_DASH_285=The provided value "%s" \
 could not be parsed as a valid attribute type definition because the hyphen \
 character is not allowed as the first character of an attribute type name
ERR_ATTR_SYNTAX_ATTR_ILLEGAL_INITIAL_UNDERSCORE_286=The provided value \
 "%s" could not be parsed as a valid attribute type definition because the \
 underscore character is not allowed as the first character of an attribute \
 type name even if the %s configuration option is enabled
ERR_ATTR_SYNTAX_ATTR_ILLEGAL_INITIAL_DIGIT_287=The provided value "%s" \
 could not be parsed as a valid attribute type definition because the \
 digit '%c' is not allowed as the first character of an attribute type name \
 unless the name is specified as an OID or the %s configuration option is enabled
ERR_OC_SYNTAX_ATTR_ILLEGAL_CHAR_288=The provided value "%s" could not \
 be parsed as a valid object class definition because character '%c' at \
 position %d is not allowed in an object class name
ERR_OC_SYNTAX_ATTR_ILLEGAL_UNDERSCORE_CHAR_289=The provided value \
 "%s" could not be parsed as a valid object class definition because the \
 underscore character is not allowed in an object class name unless the \
 %s configuration option is enabled
ERR_OC_SYNTAX_ATTR_ILLEGAL_INITIAL_DASH_290=The provided value "%s" \
 could not be parsed as a valid object class definition because the hyphen \
 character is not allowed as the first character of an object class name
ERR_OC_SYNTAX_ATTR_ILLEGAL_INITIAL_UNDERSCORE_291=The provided value \
 "%s" could not be parsed as a valid object class definition because the \
 underscore character is not allowed as the first character of an object \
 class name even if the %s configuration option is enabled
ERR_OC_SYNTAX_ATTR_ILLEGAL_INITIAL_DIGIT_292=The provided value "%s" \
 could not be parsed as a valid object class definition because the \
 digit '%c' is not allowed as the first character of an object class name \
 unless the name is specified as an OID or the %s configuration option is enabled
WARN_ATTR_INVALID_RELATIVE_TIME_ASSERTION_FORMAT_294=The provided \
 value "%s" could not be parsed as a valid assertion value because the \
 character '%c' is not allowed. The acceptable values are s(second),m(minute), \
 ,h(hour),d(day) and w(week)
WARN_ATTR_INVALID_PARTIAL_TIME_ASSERTION_FORMAT_295=The provided \
 value "%s" could not be parsed as a valid assertion value because the \
 character '%c' is not allowed. The acceptable values are s(second), \
 m (minute), h (hour), D (date), M(month) and Y(year)
WARN_ATTR_INVALID_SECOND_ASSERTION_FORMAT_296=The provided \
  value "%s" could not be parsed as a valid assertion value because "%d" is not \
  a valid second specification
WARN_ATTR_INVALID_DATE_ASSERTION_FORMAT_297=The provided \
  value "%s" could not be parsed as a valid assertion value because "%d" is not \
  a valid date specification
WARN_ATTR_INVALID_MONTH_ASSERTION_FORMAT_298=The provided \
  value "%s" could not be parsed as a valid assertion value because "%d" is not \
  a valid month specification
WARN_ATTR_INVALID_YEAR_ASSERTION_FORMAT_299=The provided \
  value "%s" could not be parsed as a valid assertion value because "%d" is not \
  a valid year specification
WARN_ATTR_DUPLICATE_DATE_ASSERTION_FORMAT_300=The provided \
  value "%s" could not be parsed as a valid assertion value because there is  \
  conflicting  value "%d" for DD(Date) specification
WARN_ATTR_DUPLICATE_MONTH_ASSERTION_FORMAT_301=The provided \
  value "%s" could not be parsed as a valid assertion value because there is  \
  conflicting  value "%d" for MM(Month) specification
WARN_ATTR_DUPLICATE_YEAR_ASSERTION_FORMAT_302=The provided \
  value "%s" could not be parsed as a valid assertion value because there is  \
  conflicting  value "%d" for YYYY(Year) specification
WARN_ATTR_CONFLICTING_ASSERTION_FORMAT_304=The provided \
 value "%s" could not be parsed as a valid assertion value because more than  \
 one time units are not allowed
ERR_ATTR_SYNTAX_LDAPSYNTAX_UNKNOWN_EXT_306=The provided value "%s" \
 could not be parsed as an ldap syntax because it contains an unrecognized \
 extension %s at position %d
WARN_ATTR_SYNTAX_LDAPSYNTAX_REGEX_INVALID_VALUE_307=The provided value \
  "%s" cannot be parsed as a valid regex syntax because it does not match  \
  the pattern "%s"
WARN_ATTR_SYNTAX_LDAPSYNTAX_REGEX_NO_PATTERN_308=The provided value "%s" \
 could not be parsed as a regex syntax because it does not contain a regex pattern
WARN_ATTR_SYNTAX_LDAPSYNTAX_REGEX_INVALID_PATTERN_309=The provided value \
  "%s" could not be parsed as a regex syntax because the provided regex \
 pattern "%s" is invalid
WARN_ATTR_SYNTAX_LDAPSYNTAX_ENUM_INVALID_VALUE_310=The provided value \
  "%s" cannot be parsed because it is not allowed by enumeration syntax \
  with OID "%s"
WARN_ATTR_SYNTAX_LDAPSYNTAX_ENUM_DUPLICATE_VALUE_311=The provided value \
  "%s" cannot be parsed as an enumeration syntax  because it contains a \
  duplicate value "%s" at position %d
WARN_ATTR_INVALID_MINUTE_ASSERTION_FORMAT_312=The provided \
  value "%s" could not be parsed as a valid assertion value because "%d" is not \
  a valid minute specification
WARN_ATTR_INVALID_HOUR_ASSERTION_FORMAT_313=The provided \
  value "%s" could not be parsed as a valid assertion value because "%d" is not \
  a valid hour specification
WARN_ATTR_DUPLICATE_SECOND_ASSERTION_FORMAT_314=The provided \
  value "%s" could not be parsed as a valid assertion value because there is  \
  conflicting  value "%d" for s(Second) specification
WARN_ATTR_DUPLICATE_MINUTE_ASSERTION_FORMAT_315=The provided \
  value "%s" could not be parsed as a valid assertion value because there is  \
  conflicting  value "%d" for m(Minute) specification
WARN_ATTR_DUPLICATE_HOUR_ASSERTION_FORMAT_316=The provided \
  value "%s" could not be parsed as a valid assertion value because there is  \
  conflicting  value "%d" for h(Hour) specification
ERR_ATTR_SYNTAX_LDAPSYNTAX_EMPTY_VALUE_317=The provided value could not \
 be parsed as a valid ldap syntax description because it was empty or \
 contained only whitespace
ERR_ATTR_SYNTAX_LDAPSYNTAX_EXPECTED_OPEN_PARENTHESIS_318=The provided \
 value "%s" could not be parsed as an ldap syntax description because an \
 open parenthesis was expected at position %d but instead a '%s' character was \
 found
ERR_ATTR_SYNTAX_LDAPSYNTAX_TRUNCATED_VALUE_319=The provided value "%s" \
 could not be parsed as an ldap syntax description because the end of the \
 value was encountered while the Directory Server expected more data to be \
 provided
ERR_ATTR_SYNTAX_LDAPSYNTAX_DOUBLE_PERIOD_IN_NUMERIC_OID_320=The provided \
 value "%s" could not be parsed as an ldap syntax description because the \
 numeric OID contained two consecutive periods at position %d
ERR_ATTR_SYNTAX_LDAPSYNTAX_ILLEGAL_CHAR_IN_NUMERIC_OID_321=The provided \
 value "%s" could not be parsed as an ldap syntax description because the \
 numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_LDAPSYNTAX_ILLEGAL_CHAR_IN_STRING_OID_322=The provided \
 value "%s" could not be parsed as an ldap syntax description because the \
 non-numeric OID contained an illegal character %s at position %d
ERR_ATTR_SYNTAX_LDAPSYNTAX_UNEXPECTED_CLOSE_PARENTHESIS_323=The provided \
 value "%s" could not be parsed as an ldap syntax description because it \
 contained an unexpected closing parenthesis at position %d
ERR_ATTR_SYNTAX_LDAPSYNTAX_TOO_MANY_EXTENSIONS_324=The provided value \
 "%s" could not be parsed as an ldap syntax description because it contains \
 more than one form of constructor
ERR_ATTR_SYNTAX_LDAPSYNTAX_UNKNOWN_SYNTAX_325=The definition for the \
 ldap syntax with OID %s declared that it's a substitute for a syntax with \
 OID %s. No such syntax is configured for use in the Directory Server
ERR_ATTR_SYNTAX_LDAPSYNTAX_ENUM_NO_VALUES_326=The provided value "%s" \
 could not be parsed as an enumeration syntax, because there is no value
ERR_ATTR_SYNTAX_LDAPSYNTAX_EXTENSION_INVALID_CHARACTER_327=The provided \
 value "%s" could not be parsed as an ldap syntax extension because an \
 invalid character was found at position %d
ERR_ATTR_SYNTAX_LDAPSYNTAX_EXPECTED_QUOTE_AT_POS_329=The provided value \
 "%s" could not be parsed as an ldap syntax description because a single \
 quote was expected at position %d but the character %s was found instead
ERR_SYNTAX_CERTIFICATE_NOTVALID_330=The provided value is not a valid \
 X.509 Certificate
ERR_SYNTAX_CERTIFICATE_INVALID_VERSION_331=The provided value is not \
 a valid X.509 Certificate because it contains an invalid version number (%d)
ERR_SYNTAX_CERTIFICATE_INVALID_DER_332=The provided value is not a valid \
 X.509 Certificate because it contains invalid DER encodings
ERR_ATTR_SYNTAX_COUNTRY_NO_VALID_ISO_CODE_333=The provided value "%s" \
 is not a valid ISO 3166 country code
ERR_ATTR_SYNTAX_ILLEGAL_X_SCHEMA_FILE_334=The provided value "%s" is \
 not safe for X-SCHEMA-FILE
WARN_CERTIFICATE_MATCH_PARSE_ERROR_335=The value could not be parsed as \
 an X.509 certificate: "%s"
ERR_CERTIFICATE_MATCH_INVALID_DN_336=The provided value "%s" could \
 not be parsed as a valid distinguished name because an error occurred while \
 trying to parse the DN portion:  %s
ERR_CERTIFICATE_MATCH_IDENTIFIER_NOT_FOUND_337=The identifier "%s" could \
 not be found at the correct position
ERR_CERTIFICATE_MATCH_EXPECTED_END_338=The GSER value contains additional \
 characters at the end of the assertion
ERR_CERTIFICATE_MATCH_GSER_INVALID_339=An error occured while parsing the \
 the GSER String: "%s"