Interface VerifyCertificateCallback.Response
- Enclosing interface:
- VerifyCertificateCallback
public static interface VerifyCertificateCallback.Response
A response for
VerifyCertificateCallback
.-
Method Summary
Modifier and TypeMethodDescriptionNotifies the engine that the engine itself must verify the certificate.invalid
(CertVerificationStatus... verificationStatuses) Notifies the engine that the given certificate is invalid with the specificverificationStatus
.valid()
Notifies the engine that the given certificate is valid.
-
Method Details
-
valid
Notifies the engine that the given certificate is valid. -
invalid
Notifies the engine that the given certificate is invalid with the specificverificationStatus
.If the status list is empty the
CertVerificationStatus.INVALID
value will be used.- Parameters:
verificationStatuses
- the list of statuses that explain why the certificate is invalid
-
defaultAction
Notifies the engine that the engine itself must verify the certificate.
-