move httpclient helper classes to commons/

This commit is contained in:
Noah Levitt
2012-06-18 15:43:52 -07:00
parent 7f0efbdac8
commit 7422a7b992
4 changed files with 4 additions and 3 deletions
@@ -17,7 +17,7 @@
* limitations under the License.
*/
package org.archive.modules.fetcher;
package org.archive.net.http;
import java.io.IOException;
import java.net.Socket;
@@ -16,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.archive.modules.fetcher;
package org.archive.net.http;
import java.io.BufferedInputStream;
import java.io.IOException;
@@ -17,7 +17,7 @@
* limitations under the License.
*/
package org.archive.modules.fetcher;
package org.archive.net.http;
import java.io.BufferedOutputStream;
import java.io.IOException;
@@ -46,6 +46,7 @@ import org.archive.modules.CrawlURI.FetchType;
import org.archive.modules.Processor;
import org.archive.modules.net.CrawlHost;
import org.archive.modules.net.ServerCache;
import org.archive.net.http.RecordingHttpClient;
import org.archive.util.Recorder;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.Lifecycle;