Skip to content

Commit 9d555ec

Browse files
committed
- Update API packages (part 4):
+ com.ning --> org.asynchttpclient + compress package hierarchy to remove now redundant http.client sub-packages.
1 parent 3b67c20 commit 9d555ec

File tree

77 files changed

+96
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+96
-92
lines changed

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/BodyChunkedInput.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/BodyChunkedInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty_4;
13+
package org.asynchttpclient.providers.netty_4;
1414

1515
import org.asynchttpclient.Body;
1616
import io.netty.buffer.ByteBuf;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/BodyFileRegion.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/BodyFileRegion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty_4;
13+
package org.asynchttpclient.providers.netty_4;
1414

1515
import org.asynchttpclient.RandomAccessBody;
1616
import io.netty.buffer.AbstractReferenceCounted;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/FeedableBodyGenerator.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/FeedableBodyGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty_4;
13+
package org.asynchttpclient.providers.netty_4;
1414

1515
import java.io.IOException;
1616
import java.nio.ByteBuffer;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/NettyAsyncHttpProvider.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/NettyAsyncHttpProvider.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations
1414
* under the License.
1515
*/
16-
package com.ning.http.client.providers.netty_4;
16+
package org.asynchttpclient.providers.netty_4;
1717

1818
import org.asynchttpclient.AsyncHandler;
1919
import org.asynchttpclient.AsyncHandler.STATE;
@@ -45,14 +45,15 @@
4545
import org.asynchttpclient.listener.TransferCompletionHandler;
4646
import org.asynchttpclient.ntlm.NTLMEngine;
4747
import org.asynchttpclient.ntlm.NTLMEngineException;
48-
import com.ning.http.client.providers.netty_4.FeedableBodyGenerator.FeedListener;
49-
import com.ning.http.client.providers.netty_4.spnego.SpnegoEngine;
48+
import org.asynchttpclient.providers.netty_4.FeedableBodyGenerator.FeedListener;
49+
import org.asynchttpclient.providers.netty_4.spnego.SpnegoEngine;
50+
import org.asynchttpclient.providers.netty_4.spnego.SpnegoEngine;
5051
import org.asynchttpclient.websocket.WebSocketUpgradeHandler;
5152
import org.asynchttpclient.multipart.MultipartBody;
5253
import org.asynchttpclient.multipart.MultipartRequestEntity;
5354
import org.asynchttpclient.util.AsyncHttpProviderUtils;
5455
import org.asynchttpclient.util.AuthenticatorUtils;
55-
import com.ning.http.client.providers.netty_4.util.CleanupChannelGroup;
56+
import org.asynchttpclient.providers.netty_4.util.CleanupChannelGroup;
5657
import org.asynchttpclient.util.ProxyUtils;
5758
import org.asynchttpclient.util.SslUtils;
5859
import org.asynchttpclient.util.UTF8UrlEncoder;
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@
1414
* under the License.
1515
*
1616
*/
17-
package com.ning.http.client.providers.netty_4;
17+
package org.asynchttpclient.providers.netty_4;
1818

1919
import java.util.HashMap;
2020
import java.util.Map;
2121
import java.util.Set;
22-
import java.util.concurrent.ExecutorService;
2322

2423
import org.slf4j.Logger;
2524
import org.slf4j.LoggerFactory;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/NettyConnectListener.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/NettyConnectListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* under the License.
1515
*
1616
*/
17-
package com.ning.http.client.providers.netty_4;
17+
package org.asynchttpclient.providers.netty_4;
1818

1919
import java.io.IOException;
2020
import java.net.ConnectException;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/NettyConnectionsPool.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/NettyConnectionsPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty_4;
13+
package org.asynchttpclient.providers.netty_4;
1414

1515
import org.asynchttpclient.ConnectionsPool;
1616
import io.netty.channel.Channel;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/NettyResponse.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/NettyResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations
1414
* under the License.
1515
*/
16-
package com.ning.http.client.providers.netty_4;
16+
package org.asynchttpclient.providers.netty_4;
1717

1818
import org.asynchttpclient.Cookie;
1919
import org.asynchttpclient.HttpResponseBodyPart;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/NettyResponseFuture.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/NettyResponseFuture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations
1414
* under the License.
1515
*/
16-
package com.ning.http.client.providers.netty_4;
16+
package org.asynchttpclient.providers.netty_4;
1717

1818
import org.asynchttpclient.AsyncHandler;
1919
import org.asynchttpclient.ConnectionPoolKeyStrategy;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/NettyWebSocket.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/NettyWebSocket.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty_4;
13+
package org.asynchttpclient.providers.netty_4;
1414

1515
import org.asynchttpclient.websocket.WebSocket;
1616
import org.asynchttpclient.websocket.WebSocketByteListener;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/Protocol.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/Protocol.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty_4;
13+
package org.asynchttpclient.providers.netty_4;
1414

1515
import io.netty.channel.ChannelHandlerContext;
1616

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/ResponseBodyPart.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/ResponseBodyPart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations
1414
* under the License.
1515
*/
16-
package com.ning.http.client.providers.netty_4;
16+
package org.asynchttpclient.providers.netty_4;
1717

1818
import org.asynchttpclient.AsyncHttpProvider;
1919
import org.asynchttpclient.HttpResponseBodyPart;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/ResponseHeaders.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/ResponseHeaders.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations
1414
* under the License.
1515
*/
16-
package com.ning.http.client.providers.netty_4;
16+
package org.asynchttpclient.providers.netty_4;
1717

1818
import org.asynchttpclient.AsyncHttpProvider;
1919
import org.asynchttpclient.FluentCaseInsensitiveStringsMap;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/ResponseStatus.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/ResponseStatus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* under the License.
1515
*
1616
*/
17-
package com.ning.http.client.providers.netty_4;
17+
package org.asynchttpclient.providers.netty_4;
1818

1919
import org.asynchttpclient.AsyncHttpProvider;
2020
import org.asynchttpclient.HttpResponseStatus;

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/WebSocketUtil.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/WebSocketUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty_4;
13+
package org.asynchttpclient.providers.netty_4;
1414

1515
import org.asynchttpclient.util.Base64;
1616

providers/netty-4/src/main/java/com/ning/http/client/providers/netty_4/spnego/SpnegoEngine.java renamed to providers/netty-4/src/main/java/org/asynchttpclient/providers/netty_4/spnego/SpnegoEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* <http://www.apache.org/>.
3636
*/
3737

38-
package com.ning.http.client.providers.netty_4.spnego;
38+
package org.asynchttpclient.providers.netty_4.spnego;
3939

4040
import org.asynchttpclient.util.Base64;
4141
import org.ietf.jgss.GSSContext;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*
3737
*/
3838

39-
package com.ning.http.client.providers.netty_4.spnego;
39+
package org.asynchttpclient.providers.netty_4.spnego;
4040

4141
import java.io.IOException;
4242

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* limitations under the License.
2727
*/
2828

29-
package com.ning.http.client.providers.netty_4.util;
29+
package org.asynchttpclient.providers.netty_4.util;
3030

3131
import io.netty.channel.Channel;
3232
import io.netty.channel.ChannelFuture;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

15-
import com.ning.http.client.providers.netty_4.NettyAsyncHttpProviderConfig;
15+
import org.asynchttpclient.providers.netty_4.NettyAsyncHttpProviderConfig;
1616
import static org.testng.Assert.assertEquals;
1717

1818
import java.util.concurrent.Executors;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

15-
import com.ning.http.client.providers.netty_4.NettyAsyncHttpProviderConfig;
15+
import org.asynchttpclient.providers.netty_4.NettyAsyncHttpProviderConfig;
1616
import org.testng.annotations.Test;
1717

1818
import org.asynchttpclient.AsyncHttpClient;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
1313

14-
package com.ning.http.client.providers.netty;
14+
package org.asynchttpclient.providers.netty;
1515

16-
import com.ning.http.client.providers.netty_4.NettyAsyncHttpProvider;
16+
import org.asynchttpclient.providers.netty_4.NettyAsyncHttpProvider;
1717
import static org.testng.Assert.assertEquals;
1818

1919
import java.util.concurrent.CountDownLatch;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyAsyncResponseTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyAsyncResponseTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
1313

14-
package com.ning.http.client.providers.netty;
14+
package org.asynchttpclient.providers.netty;
1515

16-
import com.ning.http.client.providers.netty_4.ResponseStatus;
17-
import com.ning.http.client.providers.netty_4.NettyResponse;
16+
import org.asynchttpclient.providers.netty_4.ResponseStatus;
17+
import org.asynchttpclient.providers.netty_4.NettyResponse;
1818
import org.asynchttpclient.Cookie;
1919
import org.asynchttpclient.FluentCaseInsensitiveStringsMap;
2020
import org.asynchttpclient.HttpResponseHeaders;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyAuthTimeoutTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyAuthTimeoutTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyBasicAuthTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyBasicAuthTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import java.util.concurrent.ExecutionException;
1616
import java.util.concurrent.TimeoutException;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyBasicHttpsTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyBasicHttpsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyBodyChunkTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyBodyChunkTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyChunkingTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyChunkingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.ning.http.client.providers.netty;
1+
package org.asynchttpclient.providers.netty;
22

33
import org.asynchttpclient.AsyncHttpClient;
44
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyComplexClientTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyComplexClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyConnectionPoolTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyConnectionPoolTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import static org.testng.Assert.assertEquals;
1616
import static org.testng.Assert.assertNotNull;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyDigestAuthTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyDigestAuthTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyEmptyBodyTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyEmptyBodyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyErrorResponseTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyErrorResponseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyFilterTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyFilterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

providers/netty-4/src/test/java/com/ning/http/client/providers/netty/NettyFollowingThreadTest.java renamed to providers/netty-4/src/test/java/org/asynchttpclient/providers/netty/NettyFollowingThreadTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package com.ning.http.client.providers.netty;
13+
package org.asynchttpclient.providers.netty;
1414

1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;

0 commit comments

Comments
 (0)