All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.seleniumtests.util.har.Request Maven / Gradle / Ivy

The newest version!
package com.seleniumtests.util.har;

import java.util.List;

public class Request {

    private int bodySize;
    private String method;
    private String url;
    private String httpVersion;
    private List
headers; private List cookies; private List queryString; private int headersSize; public Request(int bodySize, String method, String url, String httpVersion, List
headers, List cookies, List queryString, int headersSize) { this.bodySize = bodySize; this.method = method; this.url = url; this.httpVersion = httpVersion; this.headers = headers; this.cookies = cookies; this.queryString = queryString; this.headersSize = headersSize; } public int getBodySize() { return bodySize; } public String getMethod() { return method; } public String getUrl() { return url; } public String getHttpVersion() { return httpVersion; } public List
getHeaders() { return headers; } public List getCookies() { return cookies; } public List getQueryString() { return queryString; } public int getHeadersSize() { return headersSize; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy