com.zeroc.IceSSL.CertificateVerifier Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
package com.zeroc.IceSSL;
/**
* An application can customize the certificate verification process
* by implementing the CertificateVerifier interface.
**/
public interface CertificateVerifier
{
/**
* Determines whether a connection should be accepted or rejected.
*
* @param info The details of the connection.
* @return true
if the connection should be accepted;
* false
, otherwise.
**/
boolean verify(ConnectionInfo info);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy