Class PKIXProxyCertificateChecker
- java.lang.Object
-
- java.security.cert.PKIXCertPathChecker
-
- eu.emi.security.authn.x509.helpers.pkipath.PKIXProxyCertificateChecker
-
- All Implemented Interfaces:
Cloneable
,CertPathChecker
public class PKIXProxyCertificateChecker extends PKIXCertPathChecker
Checker which handles proxy certificate extensions so BC won't report them as unknown. The real proxy verification is done elsewhere.- Author:
- K. Benedyczak
-
-
Constructor Summary
Constructors Constructor Description PKIXProxyCertificateChecker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
check(Certificate cert, Collection<String> unresolvedCritExts)
Set<String>
getSupportedExtensions()
void
init(boolean forward)
boolean
isForwardCheckingSupported()
-
Methods inherited from class java.security.cert.PKIXCertPathChecker
check, clone
-
-
-
-
Method Detail
-
init
public void init(boolean forward) throws CertPathValidatorException
- Specified by:
init
in interfaceCertPathChecker
- Specified by:
init
in classPKIXCertPathChecker
- Throws:
CertPathValidatorException
-
isForwardCheckingSupported
public boolean isForwardCheckingSupported()
- Specified by:
isForwardCheckingSupported
in interfaceCertPathChecker
- Specified by:
isForwardCheckingSupported
in classPKIXCertPathChecker
-
getSupportedExtensions
public Set<String> getSupportedExtensions()
- Specified by:
getSupportedExtensions
in classPKIXCertPathChecker
-
check
public void check(Certificate cert, Collection<String> unresolvedCritExts) throws CertPathValidatorException
- Specified by:
check
in classPKIXCertPathChecker
- Throws:
CertPathValidatorException
-
-