You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2007/10/24 20:57:04 UTC

svn commit: r587967 - /jakarta/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LDAPArgument.java

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: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org