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

io.github.springboot.httpclient.auth.cifs.JCIFSNTLMSchemeFactory Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.springboot.httpclient.auth.cifs;

import org.apache.http.auth.AuthScheme;
import org.apache.http.auth.AuthSchemeProvider;
import org.apache.http.impl.auth.NTLMScheme;
import org.apache.http.protocol.HttpContext;

public class JCIFSNTLMSchemeFactory implements AuthSchemeProvider {

	@Override
	public AuthScheme create(final HttpContext context) {
		return new NTLMScheme(new JCIFSEngine());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy