All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bigml.binding.utils.MockHostnameVerifier Maven / Gradle / Ivy

package org.bigml.binding.utils;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLSession;

/**
 * Create all-trusting host name verifier
 */
public class MockHostnameVerifier implements HostnameVerifier {
    public boolean verify(String s, SSLSession sslSession) {
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy