Moved class to another package (no functional changes)

This commit is contained in:
Oleg Kalnichevski 2018-10-14 15:10:30 +02:00
parent 82967da424
commit 49487b4fe5
5 changed files with 5 additions and 6 deletions

View File

@ -48,7 +48,7 @@ import org.apache.hc.client5.http.auth.AuthenticationException;
import org.apache.hc.client5.http.auth.Credentials;
import org.apache.hc.client5.http.auth.CredentialsProvider;
import org.apache.hc.client5.http.auth.MalformedChallengeException;
import org.apache.hc.client5.http.auth.ByteArrayBuilder;
import org.apache.hc.client5.http.utils.ByteArrayBuilder;
import org.apache.hc.core5.http.HttpHost;
import org.apache.hc.core5.http.HttpRequest;
import org.apache.hc.core5.http.NameValuePair;

View File

@ -48,7 +48,7 @@ import org.apache.hc.client5.http.auth.AuthChallenge;
import org.apache.hc.client5.http.auth.AuthScheme;
import org.apache.hc.client5.http.auth.AuthScope;
import org.apache.hc.client5.http.auth.AuthenticationException;
import org.apache.hc.client5.http.auth.ByteArrayBuilder;
import org.apache.hc.client5.http.utils.ByteArrayBuilder;
import org.apache.hc.client5.http.auth.Credentials;
import org.apache.hc.client5.http.auth.CredentialsProvider;
import org.apache.hc.client5.http.auth.MalformedChallengeException;

View File

@ -41,7 +41,7 @@ import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
import org.apache.commons.codec.binary.Base64;
import org.apache.hc.client5.http.auth.ByteArrayBuilder;
import org.apache.hc.client5.http.utils.ByteArrayBuilder;
/**
* Provides an implementation for NTLMv1, NTLMv2, and NTLM2 Session forms of the NTLM

View File

@ -24,7 +24,7 @@
* <http://www.apache.org/>.
*
*/
package org.apache.hc.client5.http.auth;
package org.apache.hc.client5.http.utils;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;

View File

@ -24,12 +24,11 @@
* <http://www.apache.org/>.
*
*/
package org.apache.hc.client5.http.auth.util;
package org.apache.hc.client5.http.utils;
import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;
import org.apache.hc.client5.http.auth.ByteArrayBuilder;
import org.junit.Assert;
import org.junit.Test;