Uses of Interface
javax.net.ssl.HostnameVerifier
| Package | Description |
|---|---|
| com.squareup.okhttp | |
| com.squareup.okhttp.internal.http | |
| com.squareup.okhttp.internal.tls | |
| javax.net.ssl |
This package provides classes and interfaces needed to use the Secure
Sockets Layer (SSL) protocol and the successor Transport Layer
Security (TLS) protocol.
|
| org.apache.http.conn.ssl |
TLS/SSL specific parts of the HttpConn API.
|
-
Uses of HostnameVerifier in com.squareup.okhttp
Methods in com.squareup.okhttp that return HostnameVerifier Modifier and Type Method Description HostnameVerifierAddress. getHostnameVerifier()Returns the hostname verifier, or null if this is not an HTTPS address.HostnameVerifierOkHttpClient. getHostnameVerifier()Methods in com.squareup.okhttp with parameters of type HostnameVerifier Modifier and Type Method Description OkHttpClientOkHttpClient. setHostnameVerifier(HostnameVerifier hostnameVerifier)Sets the verifier used to confirm that response certificates apply to requested hostnames for HTTPS connections.Constructors in com.squareup.okhttp with parameters of type HostnameVerifier Constructor Description Address(String uriHost, int uriPort, SSLSocketFactory sslSocketFactory, HostnameVerifier hostnameVerifier, OkAuthenticator authenticator, Proxy proxy, List<String> transports) -
Uses of HostnameVerifier in com.squareup.okhttp.internal.http
Methods in com.squareup.okhttp.internal.http that return HostnameVerifier Modifier and Type Method Description HostnameVerifierHttpsURLConnectionImpl. getHostnameVerifier()Methods in com.squareup.okhttp.internal.http with parameters of type HostnameVerifier Modifier and Type Method Description voidHttpsURLConnectionImpl. setHostnameVerifier(HostnameVerifier hostnameVerifier) -
Uses of HostnameVerifier in com.squareup.okhttp.internal.tls
Classes in com.squareup.okhttp.internal.tls that implement HostnameVerifier Modifier and Type Class Description classOkHostnameVerifierA HostnameVerifier consistent with RFC 2818. -
Uses of HostnameVerifier in javax.net.ssl
Classes in javax.net.ssl that implement HostnameVerifier Modifier and Type Class Description classDefaultHostnameVerifierA HostnameVerifier consistent with RFC 2818.Fields in javax.net.ssl declared as HostnameVerifier Modifier and Type Field Description protected HostnameVerifierHttpsURLConnection. hostnameVerifierThe host name verifier used by this connection.Methods in javax.net.ssl that return HostnameVerifier Modifier and Type Method Description static HostnameVerifierHttpsURLConnection. getDefaultHostnameVerifier()Returns the default hostname verifier.HostnameVerifierHttpsURLConnection. getHostnameVerifier()Returns the hostname verifier used by this instance.Methods in javax.net.ssl with parameters of type HostnameVerifier Modifier and Type Method Description static voidHttpsURLConnection. setDefaultHostnameVerifier(HostnameVerifier v)Sets the default hostname verifier to be used by new instances.voidHttpsURLConnection. setHostnameVerifier(HostnameVerifier v)Sets the hostname verifier for this instance. -
Uses of HostnameVerifier in org.apache.http.conn.ssl
Subinterfaces of HostnameVerifier in org.apache.http.conn.ssl Modifier and Type Interface Description interfaceX509HostnameVerifierInterface for checking if a hostname matches the names stored inside the server's X.509 certificate.Classes in org.apache.http.conn.ssl that implement HostnameVerifier Modifier and Type Class Description classAbstractVerifierAbstract base class for all standardX509HostnameVerifierimplementations.classAllowAllHostnameVerifierThe ALLOW_ALL HostnameVerifier essentially turns hostname verification off.classBrowserCompatHostnameVerifierThe HostnameVerifier that works the same way as Curl and Firefox.classStrictHostnameVerifierThe Strict HostnameVerifier works the same way as Sun Java 1.4, Sun Java 5, Sun Java 6-rc.