List of usage examples for javax.net.ssl HostnameVerifier interface-usage
From source file org.esco.portlet.flashinfo.dao.util.EscoHostnameVerifier.java
/** * Created by jgribonvald on 27/09/16. */ public class EscoHostnameVerifier implements HostnameVerifier, InitializingBean { private final Logger log = LoggerFactory.getLogger(this.getClass());
From source file com.esri.geoevent.datastore.DataStoreProxyHostnameVerifier.java
public class DataStoreProxyHostnameVerifier implements HostnameVerifier { private Collection<X509Certificate> trustedCerts; private DefaultHostnameVerifier verifier; DataStoreProxyHostnameVerifier(Collection<X509Certificate> trustedCerts) { this.trustedCerts = trustedCerts;
From source file ua.pp.msk.cliqr.CliQrHostnameVerifier.java
/** * * @author Maksym Shkolnyi aka maskimko */ public class CliQrHostnameVerifier implements X509HostnameVerifier, HostnameVerifier {
From source file ua.pp.msk.gradle.http.NexusHostnameVerifier.java
/** * * @author Maksym Shkolnyi */ public class NexusHostnameVerifier implements X509HostnameVerifier, HostnameVerifier { private final Logger logger = LoggerFactory.getLogger(NexusHostnameVerifier.class);
From source file com.qpark.eip.core.spring.security.https.EipX509TrustManager.java
/**
* If the SSL/TLS implementation's hostname verification logic (TrustManager)
* fails, the verify method (HostnameVerifier) returns <code>false</code>.
*
* <pre>
* http://docs.oracle.com/javase/1.5.0/docs/guide/security/jsse/JSSERefGuide.html#TrustManager
From source file at.gv.egiz.bku.spring.ConfigurableHostnameVerifier.java
public class ConfigurableHostnameVerifier implements HostnameVerifier { /** * The configuration facade. */ protected final ConfigurationFacade configurationFacade = new ConfigurationFacade();
From source file edu.vt.middleware.ldap.ssl.DefaultHostnameVerifier.java
/**
* Hostname verifier that provides an implementation similar to what occurs with
* JNDI startTLS. Verification occurs in the following order:
* <ul>
* <li>if hostname is IP, then cert must have exact match IP subjAltName</li>
* <li>hostname must match any DNS subjAltName if any exist</li>
From source file gov.hhs.fha.nhinc.lift.proxy.server.Server.java
public abstract class Server implements Runnable, HostnameVerifier { protected Log log = null; private HandlerPrototype prototype; /**
From source file org.apache.http.HC4.conn.ssl.DefaultHostnameVerifier.java
/**
* Default {@link javax.net.ssl.HostnameVerifier} implementation.
*
* @since 4.4
*/
@Immutable
From source file org.getobjects.appserver.core.WOHTTPConnection.java
public class WOHTTPConnection extends NSObject implements HostnameVerifier { protected static final Log log = LogFactory.getLog("WOHTTPConnection"); protected static final Authenticator sharedURLAuthorityBasedAuthenticator = new URLAuthorityBasedAuthenticator();