Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
1.0.0-M33
-
None
Description
According to RFC2251 the result code for error 32 is 'noSuchObject'.
org.apache.directory.api.ldap.model.message.ResultCodeEnum currently defines:
NO_SUCH_OBJECT(32, "NO_SUCH_OBJECT")
instead of:
NO_SUCH_OBJECT(32, "noSuchObject")
I'm using DSMLv2 and JaxB and the issue I face is when receiving this error the result code cannot be unmarshalled into the corresponding Java enum type LDAPResultCode.