Author: sebb
Date: Wed Oct 24 11:57:03 2007
New Revision: 587967

URL: http://svn.apache.org/viewvc?rev=587967&view=rev
Log:
NO need for constants to be public

Modified:
    
jakarta/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LDAPArgument.java

Modified: 
jakarta/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LDAPArgument.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LDAPArgument.java?rev=587967&r1=587966&r2=587967&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LDAPArgument.java
 (original)
+++ 
jakarta/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LDAPArgument.java
 Wed Oct 24 11:57:03 2007
@@ -40,19 +40,20 @@
  */
 
 public class LDAPArgument extends AbstractTestElement implements Serializable {
-       // TODO should these be public?
 
+       // ** These constants are used in the JMX files, and so must not be 
changed **
+       
        /** Name used to store the argument's name. */
-       public static final String ARG_NAME = "Argument.name"; //$NON-NLS$
+       private static final String ARG_NAME = "Argument.name"; //$NON-NLS$
 
        /** Name used to store the argument's value. */
-       public static final String VALUE = "Argument.value"; //$NON-NLS$
+       private static final String VALUE = "Argument.value"; //$NON-NLS$
 
        /** Name used to store the argument's value. */
-       public static final String OPCODE = "Argument.opcode"; //$NON-NLS$
+       private static final String OPCODE = "Argument.opcode"; //$NON-NLS$
 
        /** Name used to store the argument's metadata. */
-       public static final String METADATA = "Argument.metadata"; //$NON-NLS$
+       private static final String METADATA = "Argument.metadata"; //$NON-NLS$
 
        /**
         * Create a new Argument without a name, value, or metadata.



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

Reply via email to