List of usage examples for javax.naming Context hashCode
@HotSpotIntrinsicCandidate public native int hashCode();
From source file:org.springframework.ldap.pool.DelegatingContext.java
/** * @see java.lang.Object#hashCode()/* w w w .j a v a 2 s .co m*/ */ public int hashCode() { final Context context = this.getInnermostDelegateContext(); return (context != null ? context.hashCode() : 0); }