Searched defs:checkers (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPKIXMasterCertPathValidator.java58 * @param certPathCheckers a List of checkers to use
210 * Examines the list of PKIX cert path checkers to determine whether
211 * both the current checker and the next checker are revocation checkers.
212 * OCSPChecker and CrlRevocationChecker are both revocation checkers.
215 int index, List<PKIXCertPathChecker> checkers) {
217 if (checker instanceof OCSPChecker && index + 1 < checkers.size()) {
218 PKIXCertPathChecker nextChecker = checkers.get(index + 1);
214 isRevocationCheck(PKIXCertPathChecker checker, int index, List<PKIXCertPathChecker> checkers) argument
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXParameters.java510 * Sets a <code>List</code> of additional certification path checkers. If
538 * @param checkers a <code>List</code> of <code>PKIXCertPathChecker</code>s.
539 * May be <code>null</code>, in which case no additional checkers will be
545 public void setCertPathCheckers(List<PKIXCertPathChecker> checkers) { argument
546 if (checkers != null) {
549 for (PKIXCertPathChecker checker : checkers) {
559 * Returns the <code>List</code> of certification path checkers.
579 * path checkers. See the {@link #setCertPathCheckers setCertPathCheckers}

Completed in 31 milliseconds