コード例 #1
0
ファイル: LdapPrincipal.java プロジェクト: FauxFaux/jdk9-jdk
 /**
  * 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();
 }
コード例 #2
0
 @BeforeClass
 public static void setUpClass() throws Exception {
   // Start an LDAP server and import test data
   LdapTestUtils.startEmbeddedServer(PORT, baseName.toString(), "odm-test");
 }