/** * Creates a string representation of this principal's name in the format defined by <a * href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>. If the name has zero components an * empty string is returned. * * @return The principal's string name. */ public String toString() { return name.toString(); }
@BeforeClass public static void setUpClass() throws Exception { // Start an LDAP server and import test data LdapTestUtils.startEmbeddedServer(PORT, baseName.toString(), "odm-test"); }