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

org.jlot.client.config.rest.NullHostnameVerifier Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package org.jlot.client.config.rest;

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

import org.springframework.stereotype.Component;

@Component
public class NullHostnameVerifier implements HostnameVerifier
{
	@Override
	public boolean verify ( String hostname, SSLSession session )
	{
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy