use of com.zimbra.cs.ldap.ZMutableEntry in project zm-mailbox by Zimbra.
the class TestLdapZMutableEntry method setDN.
@Test
public void setDN() throws Exception {
String DN = "cn=zimbra";
ZMutableEntry entry = LdapClient.createMutableEntry();
entry.setDN(DN);
assertEquals(DN, entry.getDN());
}
Aggregations