khammond    01/10/07 22:20:30

  Modified:    src/org/apache/jmeter/protocol/http/control AuthManager.java
  Log:
  New string for class label to be consistent with the other managers.  Added method 
to create new empty auth.
  
  Revision  Changes    Path
  1.14      +6 -2      
jakarta-jmeter/src/org/apache/jmeter/protocol/http/control/AuthManager.java
  
  Index: AuthManager.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/org/apache/jmeter/protocol/http/control/AuthManager.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- AuthManager.java  2001/08/31 00:46:44     1.13
  +++ AuthManager.java  2001/10/08 05:20:30     1.14
  @@ -69,7 +69,7 @@
    *
    *@author     <a href="mailto:[EMAIL PROTECTED]";>Rapha�l Luta
    *      </a>
  - *@created    $Date: 2001/08/31 00:46:44 $
  + *@created    $Date: 2001/10/08 05:20:30 $
    *@version    0.9
    ***********************************************************/
   public class AuthManager implements ConfigElement, JMeterComponentModel, Saveable,
  @@ -210,7 +210,7 @@
         ***********************************************************/
        public String getClassLabel()
        {
  -             return "Http Authorization";
  +             return "HTTP Authorization Manager";
        }
   
        /************************************************************
  @@ -306,6 +306,10 @@
        {
                auths.add(auth);
        }
  +
  +      public void addAuth() {
  +             auths.add(new Authorization());
  +      }
   
        /************************************************************
         *  !ToDo (Method description)
  
  
  

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

Reply via email to