createUser(user, firstname, lastname, email, dn);
return dn.toNormName();
}
protected String createUserCN(String user, String group, String firstname, String lastname, String email) throws Exception {
LdapDN dn = new LdapDN("cn="+lastname + "\\," + firstname +",ou="+group+",o=camunda,c=org");
createUser(user, firstname, lastname, email, dn);
return dn.toNormName();
}