Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.0.0-M29
-
None
Description
The LdifReader class lowercases the AtributeType during the parsing :
public static Attribute parseAttributeValue( String line ) { int colonIndex = line.indexOf( ':' ); if ( colonIndex != -1 ) { String attributeType = Strings.toLowerCase( line ).substring( 0, colonIndex );
We then lose the original user provided AttributeType, which is not expected
Attachments
Issue Links
- is duplicated by
-
DIRAPI-228 LdifReader lowercases all attribute types
- Closed