Package org.jivesoftware.openfire.net
Class OCSPChecker
- java.lang.Object
-
- java.security.cert.PKIXCertPathChecker
-
- org.jivesoftware.openfire.net.OCSPChecker
-
- All Implemented Interfaces:
Cloneable
,CertPathChecker
public class OCSPChecker extends PKIXCertPathChecker
APKIXCertPathChecker
that uses Online Certificate Status Protocol (OCSP) See RFC 2560.- Author:
- Jay Kline
-
-
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
-
-