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

net.lenni0451.commons.network.trust.AllHostnameVerifier Maven / Gradle / Ivy

The newest version!
package net.lenni0451.commons.network.trust;

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

public class AllHostnameVerifier implements HostnameVerifier {

    @Override
    public boolean verify(String s, SSLSession sslSession) {
        return true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy