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

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DForwardBuilder.java445 * @param oCert1 First 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;
464 X500Principal cIssuer1 = oCert1.getIssuerX500Principal();
604 X500Principal cSubject1 = oCert1.getSubjectX500Principal();

Completed in 29 milliseconds