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

Matthew Swift
30.25.2013 ad636a8035cc19f5a412b6b97b3f95ba37d0fe9a
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
/*
 * 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 2009 Sun Microsystems, Inc.
 *      Portions copyright 2013 ForgeRock AS.
 */
 
package org.forgerock.opendj.ldap;
 
import static org.forgerock.opendj.ldap.CoreMessages.*;
 
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
 
import org.forgerock.i18n.LocalizableMessage;
 
/**
 * An operation result code as defined in RFC 4511 section 4.1.9 is used to
 * indicate the final status of an operation. If a server detects multiple
 * errors for an operation, only one result code is returned. The server should
 * return the result code that best indicates the nature of the error
 * encountered. Servers may return substituted result codes to prevent
 * unauthorized disclosures.
 *
 * @see <a href="http://tools.ietf.org/html/rfc4511#section-4.1.9">RFC 4511 -
 *      Lightweight Directory Access Protocol (LDAP): The Protocol </a>
 */
public final class ResultCode {
    private static final ResultCode[] ELEMENTS = new ResultCode[16655];
 
    private static final List<ResultCode> IMMUTABLE_ELEMENTS = Collections.unmodifiableList(Arrays
            .asList(ELEMENTS));
 
    /**
     * The result code that indicates that the operation completed successfully.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 0}.
     */
    public static final ResultCode SUCCESS =
            registerSuccessResultCode(0, INFO_RESULT_SUCCESS.get());
 
    /**
     * The result code that indicates that an internal error prevented the
     * operation from being processed properly.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 1}.
     */
    public static final ResultCode OPERATIONS_ERROR = registerErrorResultCode(1,
            INFO_RESULT_OPERATIONS_ERROR.get());
 
    /**
     * The result code that indicates that the client sent a malformed or
     * illegal request to the server.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 2}.
     */
    public static final ResultCode PROTOCOL_ERROR = registerErrorResultCode(2,
            INFO_RESULT_PROTOCOL_ERROR.get());
 
    /**
     * The result code that indicates that a time limit was exceeded while
     * attempting to process the request.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 3}.
     */
    public static final ResultCode TIME_LIMIT_EXCEEDED = registerErrorResultCode(3,
            INFO_RESULT_TIME_LIMIT_EXCEEDED.get());
 
    /**
     * The result code that indicates that a size limit was exceeded while
     * attempting to process the request.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 4}.
     */
    public static final ResultCode SIZE_LIMIT_EXCEEDED = registerErrorResultCode(4,
            INFO_RESULT_SIZE_LIMIT_EXCEEDED.get());
 
    /**
     * The result code that indicates that the attribute value assertion
     * included in a compare request did not match the targeted entry.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 5}.
     */
    public static final ResultCode COMPARE_FALSE = registerSuccessResultCode(5,
            INFO_RESULT_COMPARE_FALSE.get());
 
    /**
     * The result code that indicates that the attribute value assertion
     * included in a compare request did match the targeted entry.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 6}.
     */
    public static final ResultCode COMPARE_TRUE = registerSuccessResultCode(6,
            INFO_RESULT_COMPARE_TRUE.get());
 
    /**
     * The result code that indicates that the requested authentication attempt
     * failed because it referenced an invalid SASL mechanism.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 7}.
     */
    public static final ResultCode AUTH_METHOD_NOT_SUPPORTED = registerErrorResultCode(7,
            INFO_RESULT_AUTH_METHOD_NOT_SUPPORTED.get());
 
    /**
     * The result code that indicates that the requested operation could not be
     * processed because it requires that the client has completed a strong form
     * of authentication.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 8}.
     */
    public static final ResultCode STRONG_AUTH_REQUIRED = registerErrorResultCode(8,
            INFO_RESULT_STRONG_AUTH_REQUIRED.get());
 
    /**
     * The result code that indicates that a referral was encountered.
     * <p>
     * Strictly speaking this result code should not be exceptional since it is
     * considered as a "success" response. However, referrals should occur
     * rarely in practice and, when they do occur, should not be ignored since
     * the application may believe that a request has succeeded when, in fact,
     * nothing was done.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 10}.
     */
    public static final ResultCode REFERRAL = registerErrorResultCode(10, INFO_RESULT_REFERRAL
            .get());
 
    /**
     * The result code that indicates that processing on the requested operation
     * could not continue because an administrative limit was exceeded.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 11}.
     */
    public static final ResultCode ADMIN_LIMIT_EXCEEDED = registerErrorResultCode(11,
            INFO_RESULT_ADMIN_LIMIT_EXCEEDED.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it included a critical extension that is unsupported or
     * inappropriate for that request.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 12}.
     */
    public static final ResultCode UNAVAILABLE_CRITICAL_EXTENSION = registerErrorResultCode(12,
            INFO_RESULT_UNAVAILABLE_CRITICAL_EXTENSION.get());
 
    /**
     * The result code that indicates that the requested operation could not be
     * processed because it requires confidentiality for the communication
     * between the client and the server.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 13}.
     */
    public static final ResultCode CONFIDENTIALITY_REQUIRED = registerErrorResultCode(13,
            INFO_RESULT_CONFIDENTIALITY_REQUIRED.get());
 
    /**
     * The result code that should be used for intermediate responses in
     * multi-stage SASL bind operations.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 14}.
     */
    public static final ResultCode SASL_BIND_IN_PROGRESS = registerSuccessResultCode(14,
            INFO_RESULT_SASL_BIND_IN_PROGRESS.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it targeted an attribute or attribute value that did not exist in
     * the specified entry.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 16}.
     */
    public static final ResultCode NO_SUCH_ATTRIBUTE = registerErrorResultCode(16,
            INFO_RESULT_NO_SUCH_ATTRIBUTE.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it referenced an attribute that is not defined in the server
     * schema.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 17}.
     */
    public static final ResultCode UNDEFINED_ATTRIBUTE_TYPE = registerErrorResultCode(17,
            INFO_RESULT_UNDEFINED_ATTRIBUTE_TYPE.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it attempted to perform an inappropriate type of matching against
     * an attribute.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 18}.
     */
    public static final ResultCode INAPPROPRIATE_MATCHING = registerErrorResultCode(18,
            INFO_RESULT_INAPPROPRIATE_MATCHING.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it would have violated some constraint defined in the server.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 19}.
     */
    public static final ResultCode CONSTRAINT_VIOLATION = registerErrorResultCode(19,
            INFO_RESULT_CONSTRAINT_VIOLATION.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it would have resulted in a conflict with an existing attribute
     * or attribute value in the target entry.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 20}.
     */
    public static final ResultCode ATTRIBUTE_OR_VALUE_EXISTS = registerErrorResultCode(20,
            INFO_RESULT_ATTRIBUTE_OR_VALUE_EXISTS.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it violated the syntax for a specified attribute.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 21}.
     */
    public static final ResultCode INVALID_ATTRIBUTE_SYNTAX = registerErrorResultCode(21,
            INFO_RESULT_INVALID_ATTRIBUTE_SYNTAX.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it referenced an entry that does not exist.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 32}.
     */
    public static final ResultCode NO_SUCH_OBJECT = registerErrorResultCode(32,
            INFO_RESULT_NO_SUCH_OBJECT.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it attempted to perform an illegal operation on an alias.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 33}.
     */
    public static final ResultCode ALIAS_PROBLEM = registerErrorResultCode(33,
            INFO_RESULT_ALIAS_PROBLEM.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it would have resulted in an entry with an invalid or malformed
     * DN.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 34}.
     */
    public static final ResultCode INVALID_DN_SYNTAX = registerErrorResultCode(34,
            INFO_RESULT_INVALID_DN_SYNTAX.get());
 
    /**
     * The result code that indicates that a problem was encountered while
     * attempting to dereference an alias for a search operation.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 36}.
     */
    public static final ResultCode ALIAS_DEREFERENCING_PROBLEM = registerErrorResultCode(36,
            INFO_RESULT_ALIAS_DEREFERENCING_PROBLEM.get());
 
    /**
     * The result code that indicates that an authentication attempt failed
     * because the requested type of authentication was not appropriate for the
     * targeted entry.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 48}.
     */
    public static final ResultCode INAPPROPRIATE_AUTHENTICATION = registerErrorResultCode(48,
            INFO_RESULT_INAPPROPRIATE_AUTHENTICATION.get());
 
    /**
     * The result code that indicates that an authentication attempt failed
     * because the user did not provide a valid set of credentials.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 49}.
     */
    public static final ResultCode INVALID_CREDENTIALS = registerErrorResultCode(49,
            INFO_RESULT_INVALID_CREDENTIALS.get());
 
    /**
     * The result code that indicates that the client does not have sufficient
     * permission to perform the requested operation.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 50}.
     */
    public static final ResultCode INSUFFICIENT_ACCESS_RIGHTS = registerErrorResultCode(50,
            INFO_RESULT_INSUFFICIENT_ACCESS_RIGHTS.get());
 
    /**
     * The result code that indicates that the server is too busy to process the
     * requested operation.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 51}.
     */
    public static final ResultCode BUSY = registerErrorResultCode(51, INFO_RESULT_BUSY.get());
 
    /**
     * The result code that indicates that either the entire server or one or
     * more required resources were not available for use in processing the
     * request.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 52}.
     */
    public static final ResultCode UNAVAILABLE = registerErrorResultCode(52,
            INFO_RESULT_UNAVAILABLE.get());
 
    /**
     * The result code that indicates that the server is unwilling to perform
     * the requested operation.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 53}.
     */
    public static final ResultCode UNWILLING_TO_PERFORM = registerErrorResultCode(53,
            INFO_RESULT_UNWILLING_TO_PERFORM.get());
 
    /**
     * The result code that indicates that a referral or chaining loop was
     * detected while processing the request.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 54}.
     */
    public static final ResultCode LOOP_DETECT = registerErrorResultCode(54,
            INFO_RESULT_LOOP_DETECT.get());
 
    /**
     * The result code that indicates that a search request included a VLV
     * request control without a server-side sort control.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 60}.
     */
    public static final ResultCode SORT_CONTROL_MISSING = registerErrorResultCode(60,
            INFO_RESULT_SORT_CONTROL_MISSING.get());
 
    /**
     * The result code that indicates that a search request included a VLV
     * request control with an invalid offset.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 61}.
     */
    public static final ResultCode OFFSET_RANGE_ERROR = registerErrorResultCode(61,
            INFO_RESULT_OFFSET_RANGE_ERROR.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it would have violated the server's naming configuration.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 64}.
     */
    public static final ResultCode NAMING_VIOLATION = registerErrorResultCode(64,
            INFO_RESULT_NAMING_VIOLATION.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it would have resulted in an entry that violated the server
     * schema.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 65}.
     */
    public static final ResultCode OBJECTCLASS_VIOLATION = registerErrorResultCode(65,
            INFO_RESULT_OBJECTCLASS_VIOLATION.get());
 
    /**
     * The result code that indicates that the requested operation is not
     * allowed for non-leaf entries.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 66}.
     */
    public static final ResultCode NOT_ALLOWED_ON_NONLEAF = registerErrorResultCode(66,
            INFO_RESULT_NOT_ALLOWED_ON_NONLEAF.get());
 
    /**
     * The result code that indicates that the requested operation is not
     * allowed on an RDN attribute.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 67}.
     */
    public static final ResultCode NOT_ALLOWED_ON_RDN = registerErrorResultCode(67,
            INFO_RESULT_NOT_ALLOWED_ON_RDN.get());
 
    /**
     * The result code that indicates that the requested operation failed
     * because it would have resulted in an entry that conflicts with an entry
     * that already exists.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 68}.
     */
    public static final ResultCode ENTRY_ALREADY_EXISTS = registerErrorResultCode(68,
            INFO_RESULT_ENTRY_ALREADY_EXISTS.get());
 
    /**
     * The result code that indicates that the operation could not be processed
     * because it would have modified the objectclasses associated with an entry
     * in an illegal manner.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 69}.
     */
    public static final ResultCode OBJECTCLASS_MODS_PROHIBITED = registerErrorResultCode(69,
            INFO_RESULT_OBJECTCLASS_MODS_PROHIBITED.get());
 
    /**
     * The result code that indicates that the operation could not be processed
     * because it would impact multiple DSAs or other repositories.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 71}.
     */
    public static final ResultCode AFFECTS_MULTIPLE_DSAS = registerErrorResultCode(71,
            INFO_RESULT_AFFECTS_MULTIPLE_DSAS.get());
 
    /**
     * The result code that indicates that the operation could not be processed
     * because there was an error while processing the virtual list view
     * control.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 76}.
     */
    public static final ResultCode VIRTUAL_LIST_VIEW_ERROR = registerErrorResultCode(76,
            INFO_RESULT_VIRTUAL_LIST_VIEW_ERROR.get());
 
    /**
     * The result code that should be used if no other result code is
     * appropriate.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 80}.
     */
    public static final ResultCode OTHER = registerErrorResultCode(80, INFO_RESULT_OTHER.get());
 
    /**
     * The client-side result code that indicates that a previously-established
     * connection to the server was lost. This is for client-side use only and
     * should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 81}.
     */
    public static final ResultCode CLIENT_SIDE_SERVER_DOWN = registerErrorResultCode(81,
            INFO_RESULT_CLIENT_SIDE_SERVER_DOWN.get());
 
    /**
     * The client-side result code that indicates that a local error occurred
     * that had nothing to do with interaction with the server. This is for
     * client-side use only and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 82}.
     */
    public static final ResultCode CLIENT_SIDE_LOCAL_ERROR = registerErrorResultCode(82,
            INFO_RESULT_CLIENT_SIDE_LOCAL_ERROR.get());
 
    /**
     * The client-side result code that indicates that an error occurred while
     * encoding a request to send to the server. This is for client-side use
     * only and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 83}.
     */
    public static final ResultCode CLIENT_SIDE_ENCODING_ERROR = registerErrorResultCode(83,
            INFO_RESULT_CLIENT_SIDE_ENCODING_ERROR.get());
 
    /**
     * The client-side result code that indicates that an error occurred while
     * decoding a response from the server. This is for client-side use only and
     * should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 84}.
     */
    public static final ResultCode CLIENT_SIDE_DECODING_ERROR = registerErrorResultCode(84,
            INFO_RESULT_CLIENT_SIDE_DECODING_ERROR.get());
 
    /**
     * The client-side result code that indicates that the client did not
     * receive an expected response in a timely manner. This is for client-side
     * use only and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 85}.
     */
    public static final ResultCode CLIENT_SIDE_TIMEOUT = registerErrorResultCode(85,
            INFO_RESULT_CLIENT_SIDE_TIMEOUT.get());
 
    /**
     * The client-side result code that indicates that the user requested an
     * unknown or unsupported authentication mechanism. This is for client-side
     * use only and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 86}.
     */
    public static final ResultCode CLIENT_SIDE_AUTH_UNKNOWN = registerErrorResultCode(86,
            INFO_RESULT_CLIENT_SIDE_AUTH_UNKNOWN.get());
 
    /**
     * The client-side result code that indicates that the filter provided by
     * the user was malformed and could not be parsed. This is for client-side
     * use only and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 87}.
     */
    public static final ResultCode CLIENT_SIDE_FILTER_ERROR = registerErrorResultCode(87,
            INFO_RESULT_CLIENT_SIDE_FILTER_ERROR.get());
 
    /**
     * The client-side result code that indicates that the user cancelled an
     * operation. This is for client-side use only and should never be
     * transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 88}.
     */
    public static final ResultCode CLIENT_SIDE_USER_CANCELLED = registerErrorResultCode(88,
            INFO_RESULT_CLIENT_SIDE_USER_CANCELLED.get());
 
    /**
     * The client-side result code that indicates that there was a problem with
     * one or more of the parameters provided by the user. This is for
     * client-side use only and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 89}.
     */
    public static final ResultCode CLIENT_SIDE_PARAM_ERROR = registerErrorResultCode(89,
            INFO_RESULT_CLIENT_SIDE_PARAM_ERROR.get());
 
    /**
     * The client-side result code that indicates that the client application
     * was not able to allocate enough memory for the requested operation. This
     * is for client-side use only and should never be transferred over
     * protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 90}.
     */
    public static final ResultCode CLIENT_SIDE_NO_MEMORY = registerErrorResultCode(90,
            INFO_RESULT_CLIENT_SIDE_NO_MEMORY.get());
 
    /**
     * The client-side result code that indicates that the client was not able
     * to establish a connection to the server. This is for client-side use only
     * and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 91}.
     */
    public static final ResultCode CLIENT_SIDE_CONNECT_ERROR = registerErrorResultCode(91,
            INFO_RESULT_CLIENT_SIDE_CONNECT_ERROR.get());
 
    /**
     * The client-side result code that indicates that the user requested an
     * operation that is not supported. This is for client-side use only and
     * should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 92}.
     */
    public static final ResultCode CLIENT_SIDE_NOT_SUPPORTED = registerErrorResultCode(92,
            INFO_RESULT_CLIENT_SIDE_NOT_SUPPORTED.get());
 
    /**
     * The client-side result code that indicates that the client expected a
     * control to be present in the response from the server but it was not
     * included. This is for client-side use only and should never be
     * transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 93}.
     */
    public static final ResultCode CLIENT_SIDE_CONTROL_NOT_FOUND = registerErrorResultCode(93,
            INFO_RESULT_CLIENT_SIDE_CONTROL_NOT_FOUND.get());
 
    /**
     * The client-side result code that indicates that the requested single
     * entry search operation or read operation failed because the Directory
     * Server did not return any matching entries. This is for client-side use
     * only and should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 94}.
     */
    public static final ResultCode CLIENT_SIDE_NO_RESULTS_RETURNED = registerErrorResultCode(94,
            INFO_RESULT_CLIENT_SIDE_NO_RESULTS_RETURNED.get());
 
    /**
     * The client-side result code that the requested single entry search
     * operation or read operation failed because the Directory Server returned
     * multiple matching entries (or search references) when only a single
     * matching entry was expected. This is for client-side use only and should
     * never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 95}.
     */
    public static final ResultCode CLIENT_SIDE_UNEXPECTED_RESULTS_RETURNED =
            registerErrorResultCode(95, INFO_RESULT_CLIENT_SIDE_UNEXPECTED_RESULTS_RETURNED.get());
 
    /**
     * The client-side result code that indicates that the client detected a
     * referral loop caused by servers referencing each other in a circular
     * manner. This is for client-side use only and should never be transferred
     * over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 96}.
     */
    public static final ResultCode CLIENT_SIDE_CLIENT_LOOP = registerErrorResultCode(96,
            INFO_RESULT_CLIENT_SIDE_CLIENT_LOOP.get());
 
    /**
     * The client-side result code that indicates that the client reached the
     * maximum number of hops allowed when attempting to follow a referral
     * (i.e., following one referral resulted in another referral which resulted
     * in another referral and so on). This is for client-side use only and
     * should never be transferred over protocol.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 97}.
     */
    public static final ResultCode CLIENT_SIDE_REFERRAL_LIMIT_EXCEEDED = registerErrorResultCode(
            97, INFO_RESULT_CLIENT_SIDE_REFERRAL_LIMIT_EXCEEDED.get());
 
    /**
     * The result code that indicates that a cancel request was successful, or
     * that the specified operation was canceled.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 118}.
     */
    public static final ResultCode CANCELLED = registerErrorResultCode(118, INFO_RESULT_CANCELED
            .get());
 
    /**
     * The result code that indicates that a cancel request was unsuccessful
     * because the targeted operation did not exist or had already completed.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 119}.
     */
    public static final ResultCode NO_SUCH_OPERATION = registerErrorResultCode(119,
            INFO_RESULT_NO_SUCH_OPERATION.get());
 
    /**
     * The result code that indicates that a cancel request was unsuccessful
     * because processing on the targeted operation had already reached a point
     * at which it could not be canceled.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 120}.
     */
    public static final ResultCode TOO_LATE = registerErrorResultCode(120, INFO_RESULT_TOO_LATE
            .get());
 
    /**
     * The result code that indicates that a cancel request was unsuccessful
     * because the targeted operation was one that could not be canceled.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 121}.
     */
    public static final ResultCode CANNOT_CANCEL = registerErrorResultCode(121,
            INFO_RESULT_CANNOT_CANCEL.get());
 
    /**
     * The result code that indicates that the filter contained in an assertion
     * control failed to match the target entry.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 122}.
     */
    public static final ResultCode ASSERTION_FAILED = registerErrorResultCode(122,
            INFO_RESULT_ASSERTION_FAILED.get());
 
    /**
     * The result code that should be used if the server will not allow the
     * client to use the requested authorization.
     * <p>
     * This result code corresponds to the LDAP result code value of {@code 123}.
     */
    public static final ResultCode AUTHORIZATION_DENIED = registerErrorResultCode(123,
            INFO_RESULT_AUTHORIZATION_DENIED.get());
 
    /**
     * The result code that should be used if the server did not actually
     * complete processing on the associated operation because the request
     * included the LDAP No-Op control.
     * <p>
     * This result code corresponds to the LDAP result code value of
     * {@code 16654}.
     */
    public static final ResultCode NO_OPERATION = registerSuccessResultCode(16654,
            INFO_RESULT_NO_OPERATION.get());
 
    /**
     * Returns the result code having the specified integer value as defined in
     * RFC 4511 section 4.1.9. If there is no result code associated with the
     * specified integer value then a temporary result code is automatically
     * created in order to handle cases where unexpected result codes are
     * returned from the server.
     *
     * @param intValue
     *            The integer value of the result code.
     * @return The result code.
     */
    public static ResultCode valueOf(final int intValue) {
        ResultCode resultCode = null;
 
        if (intValue >= 0 || intValue < ELEMENTS.length) {
            resultCode = ELEMENTS[intValue];
        }
 
        if (resultCode == null) {
            resultCode =
                    new ResultCode(intValue, LocalizableMessage.raw("undefined(" + intValue + ")"),
                            true);
        }
 
        return resultCode;
    }
 
    /**
     * Returns an unmodifiable list containing the set of available result codes
     * indexed on their integer value as defined in RFC 4511 section 4.1.9.
     *
     * @return An unmodifiable list containing the set of available result
     *         codes.
     */
    public static List<ResultCode> values() {
        return IMMUTABLE_ELEMENTS;
    }
 
    /**
     * Creates and registers a new error result code with the application.
     *
     * @param intValue
     *            The integer value of the error result code as defined in RFC
     *            4511 section 4.1.9.
     * @param name
     *            The name of the error result code.
     * @return The new error result code.
     */
    private static ResultCode registerErrorResultCode(final int intValue,
            final LocalizableMessage name) {
        final ResultCode t = new ResultCode(intValue, name, true);
        ELEMENTS[intValue] = t;
        return t;
    }
 
    /**
     * Creates and registers a new success result code with the application.
     *
     * @param intValue
     *            The integer value of the success result code as defined in RFC
     *            4511 section 4.1.9.
     * @param name
     *            The name of the success result code.
     * @return The new success result code.
     */
    private static ResultCode registerSuccessResultCode(final int intValue,
            final LocalizableMessage name) {
        final ResultCode t = new ResultCode(intValue, name, false);
        ELEMENTS[intValue] = t;
        return t;
    }
 
    private final int intValue;
 
    private final LocalizableMessage name;
 
    private final boolean exceptional;
 
    // Prevent direct instantiation.
    private ResultCode(final int intValue, final LocalizableMessage name, final boolean exceptional) {
        this.intValue = intValue;
        this.name = name;
        this.exceptional = exceptional;
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        } else if (obj instanceof ResultCode) {
            return this.intValue == ((ResultCode) obj).intValue;
        } else {
            return false;
        }
    }
 
    /**
     * Returns the short human-readable name of this result code.
     *
     * @return The short human-readable name of this result code.
     */
    public LocalizableMessage getName() {
        return name;
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    public int hashCode() {
        return intValue;
    }
 
    /**
     * Returns the integer value of this result code.
     *
     * @return The integer value of this result code.
     */
    public int intValue() {
        return intValue;
    }
 
    /**
     * Indicates whether or not this result code represents an error result.
     * <p>
     * The following result codes are NOT interpreted as error results:
     * <ul>
     * <li>{@link #SUCCESS}
     * <li>{@link #COMPARE_FALSE}
     * <li>{@link #COMPARE_TRUE}
     * <li>{@link #SASL_BIND_IN_PROGRESS}
     * <li>{@link #NO_OPERATION}
     * </ul>
     * In order to make it easier for application to detect referrals, the
     * {@link #REFERRAL} result code is interpreted as an error result (the LDAP
     * RFCs treat referrals as a success response).
     *
     * @return {@code true} if this result code represents an error result,
     *         otherwise {@code false}.
     */
    public boolean isExceptional() {
        return exceptional;
    }
 
    /**
     * Returns the string representation of this result code.
     *
     * @return The string representation of this result code.
     */
    @Override
    public String toString() {
        return name.toString();
    }
 
}