de.matrixweb.harhar.model.Request.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harhar Show documentation
Show all versions of harhar Show documentation
This project reads in Google HAR files and executes them according to the given
cmdline options. This could be used as simple load-generator and load-testing
tool.
The newest version!
package de.matrixweb.harhar.model
/**
* @author marwol
*/
class Request implements Serializable {
String method
String url
String httpVersion
List headers
List queryString
List cookies
int headersSize
int bodySize
PostData postData
}