to top
Android APIs
public class

AllowAllHostnameVerifier

extends AbstractVerifier
java.lang.Object
   ↳ org.apache.http.conn.ssl.AbstractVerifier
     ↳ org.apache.http.conn.ssl.AllowAllHostnameVerifier

Class Overview

The ALLOW_ALL HostnameVerifier essentially turns hostname verification off. This implementation is a no-op, and never throws the SSLException.

Summary

Public Constructors
AllowAllHostnameVerifier()
Public Methods
final String toString()
Returns a string containing a concise, human-readable description of this object.
final void verify(String host, String[] cns, String[] subjectAlts)
[Expand]
Inherited Methods
From class org.apache.http.conn.ssl.AbstractVerifier
From class java.lang.Object
From interface javax.net.ssl.HostnameVerifier
From interface org.apache.http.conn.ssl.X509HostnameVerifier

Public Constructors

public AllowAllHostnameVerifier ()

Added in API level 1

Public Methods

public final String toString ()

Added in API level 1

Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:

   getClass().getName() + '@' + Integer.toHexString(hashCode())

See Writing a useful toString method if you intend implementing your own toString method.

Returns
  • a printable representation of this object.

public final void verify (String host, String[] cns, String[] subjectAlts)

Added in API level 1