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

com.netflix.exhibitor.standalone.NullHostnameVerifier Maven / Gradle / Ivy

The newest version!
package com.netflix.exhibitor.standalone;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy