Package com.zeroc.IceSSL
Interface CertificateVerifier
public interface CertificateVerifier
An application can customize the certificate verification process
by implementing the CertificateVerifier interface.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanverify(ConnectionInfo info) Determines whether a connection should be accepted or rejected.
-
Method Details
-
verify
Determines whether a connection should be accepted or rejected.- Parameters:
info- The details of the connection.- Returns:
trueif the connection should be accepted;false, otherwise.
-