neth        01/12/22 20:32:02

  Modified:    src/org/apache/jmeter/protocol/http/sampler
                        HTTPSamplerFull.java
  Log:
  TOTAL_TIME constant moved from HttpSamplerFull.java to SampleResult.java.
  
  Revision  Changes    Path
  1.11      +3 -5      
jakarta-jmeter/src/org/apache/jmeter/protocol/http/sampler/HTTPSamplerFull.java
  
  Index: HTTPSamplerFull.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/org/apache/jmeter/protocol/http/sampler/HTTPSamplerFull.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HTTPSamplerFull.java      2001/10/11 12:07:13     1.10
  +++ HTTPSamplerFull.java      2001/12/23 04:32:02     1.11
  @@ -83,13 +83,11 @@
    *
    * @author   Khor Soon Hin
    * @version  1.0
  - * @created  $Date: 2001/10/11 12:07:13 $
  + * @created  $Date: 2001/12/23 04:32:02 $
    */
   public class HTTPSamplerFull extends HTTPSampler
   {
  -  public final static String RESULT_LIST = "httpSamplerFull.RESULT_LIST";
     public final static String IMAGE = "httpSamplerFull.IMAGE";
  -  public final static String TOTAL_TIME = "httpSamplerFull.TOTAL_TIME";
   
     protected static Category catClass =
         Category.getInstance(HTTPSamplerFull.class.getName());
  @@ -323,12 +321,12 @@
                }
                loadBinaryList.add(imgRes);
         }
  -      res.putValue(RESULT_LIST, loadBinaryList);
  +      res.putValue(SampleResult.RESULT_LIST, loadBinaryList);
         if(catClass.isDebugEnabled())
         {
                catClass.debug("sample2 : total time - " + totalTime);
         }
  -      res.putValue(TOTAL_TIME, new Long(totalTime));
  +      res.putValue(SampleResult.TOTAL_TIME, new Long(totalTime));
         catClass.debug("End : sample2");
         return res;
     }
  
  
  

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

Reply via email to