Class HTTPFileArgs
java.lang.Object
org.apache.jmeter.testelement.AbstractTestElement
org.apache.jmeter.config.ConfigTestElement
org.apache.jmeter.protocol.http.util.HTTPFileArgs
- All Implemented Interfaces:
Serializable, Cloneable, ConfigElement, Searchable, TestElement
A set of HTTPFileArg objects.
- See Also:
-
Field Summary
Fields inherited from class ConfigTestElement
PASSWORD, USERNAMEFields inherited from interface TestElement
COMMENTS, ENABLED, GUI_CLASS, NAME, TEST_CLASS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidAdd a new empty file to the list.voidaddHTTPFileArg(String path) Add a new file with the given path.voidaddHTTPFileArg(String path, String param, String mime) adds a new File to the HTTPFileArgs list to be uploaded with http request.voidaddHTTPFileArg(HTTPFileArg file) Add a new file.asArray()Get the current arguments as an array.voidclear()Clear the files.getHTTPFileArg(int row) Get a single file.intGet the number of files in the list.Get the files.iterator()Get a PropertyIterator of the files.voidRemove all files from the list.voidremoveHTTPFileArg(int row) Remove the specified file from the list.voidremoveHTTPFileArg(String filePath) Remove the file with the specified path.voidremoveHTTPFileArg(HTTPFileArg file) Remove the specified file from the list.voidsetHTTPFileArgs(List<HTTPFileArg> files) Set the list of files.toString()Create a string representation of the files.Methods inherited from class ConfigTestElement
addConfigElement, addTestElement, expectsModificationMethods inherited from class AbstractTestElement
addPropertiesValues, addProperty, addProperty, canRemove, clearTemporary, clearTestElementChildren, clone, emptyTemporary, equals, getComment, getName, getProperty, getPropertyAsBoolean, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsInt, getPropertyAsLong, getPropertyAsLong, getPropertyAsString, getPropertyAsString, getSearchableTokens, getThreadContext, getThreadName, hashCode, isEnabled, isRunningVersion, isTemporary, logProperties, mergeIn, propertyIterator, recoverRunningVersion, removeProperty, setComment, setEnabled, setName, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setRunningVersion, setTemporary, setThreadContext, setThreadName, traverse, traverseCollection, traverseMap, traversePropertyMethods inherited from interface ConfigElement
clone
-
Constructor Details
-
HTTPFileArgs
public HTTPFileArgs()Create a new HTTPFileArgs object with no files.
-
-
Method Details
-
getHTTPFileArgsCollection
-
clear
public void clear()Clear the files.- Specified by:
clearin interfaceTestElement- Overrides:
clearin classAbstractTestElement
-
setHTTPFileArgs
Set the list of files. Any existing files will be lost.- Parameters:
files- the new files
-
addHTTPFileArg
Add a new file with the given path.- Parameters:
path- the path of the file
-
addHTTPFileArg
-
addHTTPFileArg
-
iterator
Get a PropertyIterator of the files.- Returns:
- an iteration of the files
-
asArray
Get the current arguments as an array.- Returns:
- an array of file arguments
-
toString
-
removeHTTPFileArg
public void removeHTTPFileArg(int row) Remove the specified file from the list.- Parameters:
row- the index of the file to remove
-
removeHTTPFileArg
Remove the specified file from the list.- Parameters:
file- the file to remove
-
removeHTTPFileArg
Remove the file with the specified path.- Parameters:
filePath- the path of the file to remove
-
removeAllHTTPFileArgs
public void removeAllHTTPFileArgs()Remove all files from the list. -
addEmptyHTTPFileArg
public void addEmptyHTTPFileArg()Add a new empty file to the list. The new file will have the empty string as its path. -
getHTTPFileArgCount
public int getHTTPFileArgCount()Get the number of files in the list.- Returns:
- the number of files
-
getHTTPFileArg
Get a single file.- Parameters:
row- the index of the file to return.- Returns:
- the file at the specified index, or null if no file exists at that index.
-