All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.net.security.ssl.trustmanager.TrustManagerConsumer Maven / Gradle / Ivy

The newest version!
package org.xbib.net.security.ssl.trustmanager;

import javax.net.ssl.X509ExtendedTrustManager;
import java.security.cert.CertificateException;

/**
 * NOTE:
 * Please don't use this class directly as it is part of the internal API. Class name and methods can be changed any time.
 */
@FunctionalInterface
interface TrustManagerConsumer {

    void checkTrusted(X509ExtendedTrustManager trustManager) throws CertificateException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy