List of usage examples for javax.naming.ldap LdapContext toString
public String toString()
From source file:org.springframework.ldap.pool.DelegatingLdapContext.java
/** * @see java.lang.Object#toString()//from w ww. ja va 2s .com */ public String toString() { final LdapContext context = this.getInnermostDelegateLdapContext(); return (context != null ? context.toString() : "LdapContext is closed"); }