cziegeler 02/05/02 03:25:25
Modified: sourceresolve/src/java/org/apache/excalibur/source/impl
URLSource.java
Log:
Adding missing static
Revision Changes Path
1.8 +3 -3
jakarta-avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/URLSource.java
Index: URLSource.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/URLSource.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- URLSource.java 1 May 2002 09:11:47 -0000 1.7
+++ URLSource.java 2 May 2002 10:25:24 -0000 1.8
@@ -24,7 +24,7 @@
* Description of a source which is described by an URL.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a>
- * @version CVS $Revision: 1.7 $ $Date: 2002/05/01 09:11:47 $
+ * @version CVS $Revision: 1.8 $ $Date: 2002/05/02 10:25:24 $
*/
public class URLSource
@@ -34,12 +34,12 @@
/** With this parameter you can specify the method to use for a http
request.
* Default is GET.
*/
- public final String HTTP_METHOD =
"org.apache.avalon.excalibur.source.Source.http.method";
+ static public final String HTTP_METHOD =
"org.apache.avalon.excalibur.source.Source.http.method";
/** With this parameter you can specify additional request parameters
which are
* appended to the URI.
*/
- public final String REQUEST_PARAMETERS =
"org.apache.avalon.excalibur.source.Source.request.parameters";
+ static public final String REQUEST_PARAMETERS =
"org.apache.avalon.excalibur.source.Source.request.parameters";
/** Identifier for file urls */
protected final String FILE = "file:";
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>