Author: sebb
Date: Sat Oct 20 08:53:20 2007
New Revision: 586749

URL: http://svn.apache.org/viewvc?rev=586749&view=rev
Log:
Give access to more header field definitions

Modified:
    
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java

Modified: 
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java?rev=586749&r1=586748&r2=586749&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
 (original)
+++ 
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
 Sat Oct 20 08:53:20 2007
@@ -199,21 +199,21 @@
     protected static final String KEEP_ALIVE = "keep-alive"; // $NON-NLS-1$
 
     // e.g. "Transfer-Encoding: chunked", which is processed automatically by 
the underlying protocol
-    protected static final String TRANSFER_ENCODING = "transfer-encoding"; // 
$NON-NLS-1$
+    public static final String TRANSFER_ENCODING = "transfer-encoding"; // 
$NON-NLS-1$
 
-    protected static final String HEADER_CONTENT_ENCODING = 
"content-encoding"; // $NON-NLS-1$
+    public static final String HEADER_CONTENT_ENCODING = "content-encoding"; 
// $NON-NLS-1$
 
     protected static final String HTTP_1_1 = "HTTP/1.1"; // $NON-NLS-1$
 
     protected static final String HEADER_SET_COOKIE = "set-cookie"; // 
$NON-NLS-1$
 
-    protected static final String ENCODING_GZIP = "gzip"; // $NON-NLS-1$
+    public static final String ENCODING_GZIP = "gzip"; // $NON-NLS-1$
 
     protected static final String HEADER_CONTENT_DISPOSITION = 
"Content-Disposition"; // $NON-NLS-1$
 
     protected static final String HEADER_CONTENT_TYPE = "Content-Type"; // 
$NON-NLS-1$
 
-    protected static final String HEADER_CONTENT_LENGTH = "Content-Length"; // 
$NON-NLS-1$
+    public static final String HEADER_CONTENT_LENGTH = "Content-Length"; // 
$NON-NLS-1$
 
     protected static final String HEADER_LOCATION = "Location"; // $NON-NLS-1$
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to