Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javax.net.ssl.HostnameVerifier

Uses of HostnameVerifier in javax.net.ssl
 

Classes in javax.net.ssl that implement HostnameVerifier
(package private)  class TrivialHostnameVerifier
          A hostname verifier that always rejects mismatched hostnames.
 

Fields in javax.net.ssl declared as HostnameVerifier
private static HostnameVerifier HttpsURLConnection.defaultVerifier
          The default verifier.
protected  HostnameVerifier HttpsURLConnection.hostnameVerifier
          The hostname verifier used for this connection.
 

Methods in javax.net.ssl that return HostnameVerifier
static HostnameVerifier HttpsURLConnection.getDefaultHostnameVerifier()
          Returns the default hostname verifier used in all new connections.
 HostnameVerifier HttpsURLConnection.getHostnameVerifier()
          Returns the current hostname verifier for this instance.
 

Methods in javax.net.ssl with parameters of type HostnameVerifier
static void HttpsURLConnection.setDefaultHostnameVerifier(HostnameVerifier newDefault)
          Sets the default hostname verifier to be used in all new connections.
 void HttpsURLConnection.setHostnameVerifier(HostnameVerifier hostnameVerifier)
          Sets the hostname verifier for this instance.