| java.lang.Object org.apache.jmeter.testelement.AbstractTestElement org.apache.jmeter.protocol.ldap.config.gui.LDAPArgument
LDAPArgument | public class LDAPArgument extends AbstractTestElement implements Serializable(Code) | | Class representing an argument. Each argument consists of a name/value and
opcode combination, as well as (optional) metadata.
author Dolf Smits(Dolf.Smits@Siemens.com) created Aug 09 2003 11:00 AM
company Siemens Netherlands N.V..
Based on the work of:
author Michael Stover author Mark Walsh
|
Constructor Summary | |
public | LDAPArgument() Create a new Argument without a name, value, or metadata. | public | LDAPArgument(String name, String value, String opcode) Create a new Argument with the specified name and value, and no metadata. | public | LDAPArgument(String name, String value, String opcode, String metadata) Create a new Argument with the specified name, value, and metadata. |
LDAPArgument | public LDAPArgument()(Code) | | Create a new Argument without a name, value, or metadata.
|
LDAPArgument | public LDAPArgument(String name, String value, String opcode)(Code) | | Create a new Argument with the specified name and value, and no metadata.
Parameters: name - the argument name Parameters: value - the argument value |
LDAPArgument | public LDAPArgument(String name, String value, String opcode, String metadata)(Code) | | Create a new Argument with the specified name, value, and metadata.
Parameters: name - the argument name Parameters: value - the argument value Parameters: metadata - the argument metadata |
getMetaData | public String getMetaData()(Code) | | Gets the Meta Data attribute of the Argument.
the MetaData value |
getName | public String getName()(Code) | | Get the name of the Argument.
the attribute's name |
getOpcode | public String getOpcode()(Code) | | Gets the opcode of the Argument object.
the attribute's value |
getValue | public String getValue()(Code) | | Gets the value of the Argument object.
the attribute's value |
setMetaData | public void setMetaData(String newMetaData)(Code) | | Sets the Meta Data attribute of the Argument.
Parameters: newMetaData - the new metadata |
setName | public void setName(String newName)(Code) | | Set the name of the Argument.
Parameters: newName - the new name |
setOpcode | public void setOpcode(String newOpcode)(Code) | | Sets the opcode of the Argument.
Parameters: newOpcode - the new value |
setValue | public void setValue(String newValue)(Code) | | Sets the value of the Argument.
Parameters: newValue - the new value |
|
|