io.github.springboot.httpclient.auth.cifs.JCIFSNTLMSchemeFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-httpclient-security-ntlm Show documentation
Show all versions of spring-boot-starter-httpclient-security-ntlm Show documentation
Spring Boot starter for ntlm jcifs and httpClient integration
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