| org.apache.jmeter.config.Argument org.apache.jmeter.protocol.http.util.HTTPArgument
Constructor Summary | |
public | HTTPArgument(String name, String value, String metadata) Constructor for the Argument object. | public | HTTPArgument(String name, String value) Constructor for the Argument object. | public | HTTPArgument(String name, String value, boolean alreadyEncoded) | public | HTTPArgument(String name, String value, boolean alreadyEncoded, String contentEncoding) | public | HTTPArgument(String name, String value, String metaData, boolean alreadyEncoded) | public | HTTPArgument(String name, String value, String metaData, boolean alreadyEncoded, String contentEncoding) | public | HTTPArgument(Argument arg) | public | HTTPArgument() |
HTTPArgument | public HTTPArgument(String name, String value)(Code) | | Constructor for the Argument object.
|
HTTPArgument | public HTTPArgument(String name, String value, boolean alreadyEncoded, String contentEncoding)(Code) | | Construct a new HTTPArgument instance
Parameters: name - the name of the parameter Parameters: value - the value of the parameter Parameters: alreadyEncoded - true if the name and value is already encoded Parameters: contentEncoding - the encoding used for the parameter value |
HTTPArgument | public HTTPArgument(String name, String value, String metaData, boolean alreadyEncoded, String contentEncoding)(Code) | | Construct a new HTTPArgument instance
Parameters: name - the name of the parameter Parameters: value - the value of the parameter Parameters: metaData - the separator to use between name and value Parameters: alreadyEncoded - true if the name and value is already encoded Parameters: contentEncoding - the encoding used for the parameter value |
HTTPArgument | public HTTPArgument()(Code) | | Constructor for the Argument object
|
convertArgumentsToHTTP | public static void convertArgumentsToHTTP(Arguments args)(Code) | | |
getEncodedValue | public String getEncodedValue()(Code) | | Get the argument value encoded using UTF-8
the argument value encoded in UTF-8 |
isAlwaysEncoded | public boolean isAlwaysEncoded()(Code) | | |
isUseEquals | public boolean isUseEquals()(Code) | | |
setAlwaysEncoded | public void setAlwaysEncoded(boolean ae)(Code) | | |
setName | public void setName(String newName)(Code) | | Sets the Name attribute of the Argument object.
Parameters: newName - the new Name value |
setUseEquals | public void setUseEquals(boolean ue)(Code) | | |
|
|