You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by cz...@apache.org on 2003/07/14 14:41:37 UTC

cvs commit: avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl HTTPClientSourceFactory.java HTTPSClientSourceFactory.java HTTPClientSource.java

cziegeler    2003/07/14 05:41:37

  Modified:    sourceresolve/src/java/org/apache/excalibur/source/impl
                        HTTPClientSourceFactory.java
                        HTTPSClientSourceFactory.java HTTPClientSource.java
  Log:
  Organizing imports
  
  Revision  Changes    Path
  1.5       +2 -3      avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/HTTPClientSourceFactory.java
  
  Index: HTTPClientSourceFactory.java
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/HTTPClientSourceFactory.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HTTPClientSourceFactory.java	9 Jul 2003 09:51:29 -0000	1.4
  +++ HTTPClientSourceFactory.java	14 Jul 2003 12:41:37 -0000	1.5
  @@ -56,15 +56,14 @@
   
   import java.io.IOException;
   import java.net.MalformedURLException;
  -import java.net.URL;
   import java.util.Map;
   
   import org.apache.avalon.framework.container.ContainerUtil;
   import org.apache.avalon.framework.logger.AbstractLogEnabled;
  -import org.apache.avalon.framework.thread.ThreadSafe;
   import org.apache.avalon.framework.parameters.ParameterException;
   import org.apache.avalon.framework.parameters.Parameterizable;
   import org.apache.avalon.framework.parameters.Parameters;
  +import org.apache.avalon.framework.thread.ThreadSafe;
   import org.apache.excalibur.source.Source;
   import org.apache.excalibur.source.SourceException;
   import org.apache.excalibur.source.SourceFactory;
  
  
  
  1.2       +1 -2      avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/HTTPSClientSourceFactory.java
  
  Index: HTTPSClientSourceFactory.java
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/HTTPSClientSourceFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- HTTPSClientSourceFactory.java	9 Jul 2003 09:51:29 -0000	1.1
  +++ HTTPSClientSourceFactory.java	14 Jul 2003 12:41:37 -0000	1.2
  @@ -61,7 +61,6 @@
   import org.apache.avalon.framework.parameters.Parameters;
   import org.apache.commons.httpclient.protocol.Protocol;
   import org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory;
  -import org.apache.excalibur.source.SourceFactory;
   
   /**
    * {@link HTTPSClientSource} Factory class.
  
  
  
  1.6       +5 -13     avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/HTTPClientSource.java
  
  Index: HTTPClientSource.java
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/HTTPClientSource.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- HTTPClientSource.java	4 Jul 2003 14:13:54 -0000	1.5
  +++ HTTPClientSource.java	14 Jul 2003 12:41:37 -0000	1.6
  @@ -54,11 +54,11 @@
    */
   package org.apache.excalibur.source.impl;
   
  -import java.io.IOException;
  -import java.io.InputStream;
   import java.io.File;
   import java.io.FileInputStream;
   import java.io.FileOutputStream;
  +import java.io.IOException;
  +import java.io.InputStream;
   import java.io.OutputStream;
   import java.util.Collections;
   import java.util.Date;
  @@ -72,24 +72,16 @@
   import org.apache.avalon.framework.parameters.Parameterizable;
   import org.apache.avalon.framework.parameters.Parameters;
   import org.apache.commons.httpclient.Header;
  -import org.apache.commons.httpclient.HostConfiguration;
   import org.apache.commons.httpclient.HttpClient;
   import org.apache.commons.httpclient.HttpMethod;
   import org.apache.commons.httpclient.HttpStatus;
   import org.apache.commons.httpclient.NameValuePair;
  -import org.apache.commons.httpclient.URIException;
   import org.apache.commons.httpclient.methods.DeleteMethod;
   import org.apache.commons.httpclient.methods.GetMethod;
   import org.apache.commons.httpclient.methods.HeadMethod;
  -import org.apache.commons.httpclient.methods.PutMethod;
   import org.apache.commons.httpclient.methods.PostMethod;
  -import org.apache.excalibur.source.ModifiableSource;
  -import org.apache.excalibur.source.SourceException;
  -import org.apache.excalibur.source.SourceNotFoundException;
  -import org.apache.excalibur.source.SourceParameters;
  -import org.apache.excalibur.source.SourceResolver;
  -import org.apache.excalibur.source.SourceUtil;
  -import org.apache.excalibur.source.SourceValidity;
  +import org.apache.commons.httpclient.methods.PutMethod;
  +import org.apache.excalibur.source.*;
   import org.apache.excalibur.source.impl.validity.TimeStampValidity;
   
   /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org