Back to project page utwitterapi.
The source code is released under:
GNU General Public License
If you think the Android project utwitterapi listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.mariotaku.utwitterapi.util; /* www . j ava 2 s . c o m*/ import javax.net.ssl.HostnameVerifier; import javax.net.ssl.SSLSession; public final class AllowAllHostnameVerifierImpl implements HostnameVerifier { @Override public boolean verify(final String hostname, final SSLSession session) { return true; } }