Michael Moorman created DIRAPI-147:
--------------------------------------
Summary: LdifEntry equals method does not compare entry attributes
when changetype is None
Key: DIRAPI-147
URL: https://issues.apache.org/jira/browse/DIRAPI-147
Project: Directory Client API
Issue Type: Bug
Affects Versions: 1.0.0-M17
Environment: Windows, Linux
Reporter: Michael Moorman
The equals() method of LdifEntry does not consider the inner entry's attributes
when ChangeType is not specified in the LDIF entry.
According to the the LDIF spec, when no changetype is specified in an LDIF
entry, a changetype "ADD" is to be assumed.
An easy fix would be, in the equals() method of LdifEntry.java, add case NONE
to the switch at:
// Check each different cases
switch ( changeType )
{
case None: //<-- Add None case fall through
case Add:
......
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira