in geronimo-connector/src/main/java/org/apache/geronimo/connector/outbound/MultiPoolConnectionInterceptor.java [196:207]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SubjectCRIKey that = (SubjectCRIKey) o;
if (hashcode != that.hashcode) return false;
if (cri != null ? !cri.equals(that.cri) : that.cri != null) return false;
if (subject != null ? !subject.equals(that.subject) : that.subject != null) return false;
return true;
}