Example usage for javax.net.ssl X509TrustManager interface-usage

List of usage examples for javax.net.ssl X509TrustManager interface-usage

Introduction

In this page you can find the example usage for javax.net.ssl X509TrustManager interface-usage.

Usage

From source file org.projectforge.ldap.MyTrustManager.java

/**
 * http://docs.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html
 * http://stackoverflow.com/questions/3964703/can-i-add-a-new-certificate-to-the-keystore-without-restarting-the-jvm
 * @author Kai Reinhard (k.reinhard@micromata.de)
 */
public class MyTrustManager implements X509TrustManager {

From source file org.projectforge.business.ldap.MyTrustManager.java

/**
 * http://docs.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html
 * http://stackoverflow.com/questions/3964703/can-i-add-a-new-certificate-to-the-keystore-without-restarting-the-jvm
 * @author Kai Reinhard (k.reinhard@micromata.de)
 */
public class MyTrustManager implements X509TrustManager {

From source file com.vmware.bdd.cli.http.DefaultTrustManager.java

/**
 * Created by xiaoliangl on 9/16/15.
 */
@Component
public class DefaultTrustManager implements X509TrustManager {
    private final static Logger logger = Logger.getLogger(DefaultTrustManager.class);

From source file gov.va.med.imaging.proxy.ssl.AuthSSLX509TrustManager.java

/**
 * <p>
 * AuthSSLX509TrustManager can be used to extend the default {@link X509TrustManager} 
 * with additional trust decisions.
 * </p>
 * 

From source file org.apache.directory.studio.connection.core.io.StudioTrustManager.java

/**
 * A wrapper for a real {@link TrustManager}. If the certificate chain is not trusted
 * then ask the user.
 *
 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
 */

From source file edu.monash.merc.util.ssl.EasyX509TrustManager.java

/**
 * <p>
 * EasyX509TrustManager unlike default {@link javax.net.ssl.X509TrustManager} accepts
 * self-signed certificates.
 * </p>
 * <p>

From source file at.gv.egiz.bku.spring.PKITrustManager.java

public class PKITrustManager implements X509TrustManager {

    Logger log = LoggerFactory.getLogger(PKITrustManager.class);

    protected PKIProfile pkiProfile;

From source file org.apache.hadoop.security.ssl.ReloadingX509TrustManager.java

/**
 * A {@link TrustManager} implementation that reloads its configuration when
 * the truststore file on disk changes.
 */
@InterfaceAudience.Private
@InterfaceStability.Evolving

From source file com.archivas.clienttools.arcutils.utils.net.GetCertsX509TrustManager.java

/**
 * Reference Material:
 * http://java.sun.com/j2se/1.5.0/docs/guide/security/jsse/JSSERefGuide.html#TrustManager
 * http://hc.apache.org/httpcomponents-client/tutorial/html/connmgmt.html#d4e497
 * <p>
 * EasyX509TrustManager unlike default {@link javax.net.ssl.X509TrustManager} accepts self-signed

From source file org.wso2.carbon.registry.indexing.solr.EasyX509TrustManager.java

/**
 * <p>
 * EasyX509TrustManager unlike default {@link X509TrustManager} accepts 
 * self-signed certificates. 
 * </p>
 * <p>