Author: pmouawad
Date: Tue Mar 29 19:27:02 2016
New Revision: 1737036

URL: http://svn.apache.org/viewvc?rev=1737036&view=rev
Log:
Bug 59249 - Http Request Defaults : Add "Source address" and "Save responses as 
MD5"
Oups forgot 1 class
Bugzilla Id: 59249

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

Modified: 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java?rev=1737036&r1=1737035&r2=1737036&view=diff
==============================================================================
--- 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
 (original)
+++ 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
 Tue Mar 29 19:27:02 2016
@@ -205,7 +205,7 @@ public abstract class HTTPSamplerBase ex
         }
     }
 
-    private static final int SOURCE_TYPE_DEFAULT = 
HTTPSamplerBase.SourceType.HOSTNAME.ordinal();
+    public static final int SOURCE_TYPE_DEFAULT = 
HTTPSamplerBase.SourceType.HOSTNAME.ordinal();
 
     // Use for ComboBox Source Address Type. Preserve order (specially with 
localization)
     public static String[] getSourceTypeList() {
@@ -271,7 +271,7 @@ public abstract class HTTPSamplerBase ex
     public static final String MONITOR = "HTTPSampler.monitor"; // $NON-NLS-1$
 
     // Store MD5 hash instead of storing response
-    private static final String MD5 = "HTTPSampler.md5"; // $NON-NLS-1$
+    public static final String MD5 = "HTTPSampler.md5"; // $NON-NLS-1$
 
     /** A number to indicate that the port has not been set. */
     public static final int UNSPECIFIED_PORT = 0;


Reply via email to