Marked CREDSSP auth scheme experimental

This commit is contained in:
Oleg Kalnichevski 2017-11-24 18:51:03 +01:00
parent 701377e926
commit 0c6aaee0b6
2 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,7 @@
import org.apache.hc.client5.http.auth.CredentialsProvider;
import org.apache.hc.client5.http.auth.MalformedChallengeException;
import org.apache.hc.client5.http.auth.NTCredentials;
import org.apache.hc.core5.annotation.Experimental;
import org.apache.hc.core5.http.HttpHost;
import org.apache.hc.core5.http.HttpRequest;
import org.apache.hc.core5.http.protocol.HttpContext;
@ -83,6 +84,7 @@
* The implementation was inspired by Python CredSSP and NTLM implementation by Jordan Borean.
* </p>
*/
@Experimental
public class CredSspScheme implements AuthScheme
{
private static final Charset UNICODE_LITTLE_UNMARKED = Charset.forName( "UnicodeLittleUnmarked" );

View File

@ -29,8 +29,10 @@
import org.apache.hc.client5.http.auth.AuthScheme;
import org.apache.hc.client5.http.auth.AuthSchemeProvider;
import org.apache.hc.core5.annotation.Experimental;
import org.apache.hc.core5.http.protocol.HttpContext;
@Experimental
public class CredSspSchemeFactory implements AuthSchemeProvider
{