Emmanuel Lecharny created DIRAPI-171:
----------------------------------------
Summary: Entry.toString() shoud not add single quotes around
binary values
Key: DIRAPI-171
URL: https://issues.apache.org/jira/browse/DIRAPI-171
Project: Directory Client API
Issue Type: Improvement
Affects Versions: 1.0.0-M20
Reporter: Emmanuel Lecharny
Fix For: 1.0.0-RC1
Currently, when creating an entry with binary attributes, a call to toString()
on this method will return the values surrounded with quotes :
Entry entry = new
DefaultEntry("uid=netbeans,ou=customer_service,ou=employees,dc=example,dc=com",
"cn: netbeans",
"sn: netbeans",
"givenName::" + new String( Base64.encode(
Strings.getBytesUtf8( "范" ) ) ),
...
System.out.println( entry );
will produce :
Entry
dn: uid=netbeans,ou=customer_service,ou=employees,dc=example,dc=com
objectclass: inetOrgPerson
objectclass: organizationalPerson
objectclass: person
objectclass: top
mail: [email protected]
givenname: '0xE8 0x8C 0x83 '
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)