List of usage examples for javax.net.ssl X509TrustManager interface-usage
From source file com.sun.socialsite.util.LeniantX509TrustManager.java
/**
* <p>
* LeniantX509TrustManager unlike default {@link X509TrustManager} accepts
* self-signed certificates.
* </p>
* <p>
From source file com.manning.androidhacks.hack023.net.SimpleX509TrustManager.java
public class SimpleX509TrustManager implements X509TrustManager { private X509TrustManager standardTrustManager = null; public SimpleX509TrustManager(KeyStore keystore) throws NoSuchAlgorithmException, KeyStoreException { TrustManagerFactory factory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); factory.init(keystore);
From source file org.objectledge.xmlrpc.ssl.AuthSSLX509TrustManager.java
/**
* <p>
* AuthSSLX509TrustManager can be used to extend the default {@link X509TrustManager}
* with additional trust decisions.
* </p>
*
From source file edu.monash.merc.util.ssl.AuthSSLX509TrustManager.java
/**
* <p>
* AuthSSLX509TrustManager can be used to extend the default {@link javax.net.ssl.X509TrustManager}
* with additional trust decisions.
* </p>
*
From source file com.cordys.coe.util.cgc.ssl.AuthSSLX509TrustManager.java
/**
* <p>AuthSSLX509TrustManager can be used to extend the default {@link X509TrustManager} with
* additional trust decisions.</p>
*
* @author <a href="mailto:oleg@ural.ru">Oleg Kalnichevski</a>
*/
From source file io.cloudslang.content.mail.sslconfig.AuthSSLX509TrustManager.java
/**
* <p>
* AuthSSLX509TrustManager can be used to extend the default {@link javax.net.ssl.X509TrustManager}
* with additional trust decisions.
* </p>
*
From source file org.openscore.content.mail.sslconfig.AuthSSLX509TrustManager.java
/**
* <p>
* AuthSSLX509TrustManager can be used to extend the default {@link javax.net.ssl.X509TrustManager}
* with additional trust decisions.
* </p>
*
From source file au.edu.monash.merc.capture.util.httpclient.ssl.AuthSSLX509TrustManager.java
/**
* <p>
* AuthSSLX509TrustManager can be used to extend the default {@link X509TrustManager}
* with additional trust decisions.
* </p>
*
From source file org.openanzo.client.AnzoTrustManager.java
/**
* This is a subclass of the default Java Trust Manager, X509TrustManager. It gives us access to the certificates so that information about them can be reported
* should they not be trusted. In that event the user is given the option to trust the certificate anyway.
*
* @author Danny Kahn ( <a href="mailto:danny@cambridgesemantics.com">danny@cambridgesemantics.com </a>)
*
From source file com.sk89q.mclauncher.security.X509KeyStore.java
/** * Presents a key store. * * @author sk89q */ public class X509KeyStore implements X509TrustManager {