List of usage examples for javax.naming.ldap LdapContext hashCode
@HotSpotIntrinsicCandidate public native int hashCode();
From source file:org.springframework.ldap.pool.DelegatingLdapContext.java
/** * @see java.lang.Object#hashCode()//from w ww . j av a 2 s. com */ public int hashCode() { final LdapContext context = this.getInnermostDelegateLdapContext(); return (context != null ? context.hashCode() : 0); }