Searched refs:oCert2 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DForwardBuilder.java446 * @param oCert2 Second X509Certificate to be compared
447 * @return -1 if oCert1 is preferable to oCert2, or
448 * if oCert1 and oCert2 are equally preferable (in this
452 * 1 if oCert2 is preferable to oCert1
453 * 0 if oCert1.equals(oCert2). We only return 0 if the
459 public int compare(X509Certificate oCert1, X509Certificate oCert2) { argument
462 if (oCert1.equals(oCert2)) return 0;
465 X500Principal cIssuer2 = oCert2.getIssuerX500Principal();
605 X500Principal cSubject2 = oCert2.getSubjectX500Principal();

Completed in 30 milliseconds