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

org.jboss.resteasy.client.jaxrs.engines.PassthroughTrustManager Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.client.jaxrs.engines;

import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;

import javax.net.ssl.X509TrustManager;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class PassthroughTrustManager implements X509TrustManager {
    public void checkClientTrusted(X509Certificate[] chain,
            String authType) throws CertificateException {
    }

    public void checkServerTrusted(X509Certificate[] chain,
            String authType) throws CertificateException {
    }

    public X509Certificate[] getAcceptedIssuers() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy