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

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

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

import java.util.HashMap;
import java.util.Map;

public class Entry {
    private String startedDateTime;
    private Request request;
    private Response response;
    private Timing timings;
    private int time;
    private String pageref;
    private Map cache = new HashMap<>();

    public Entry(String pageref, String startedDateTime, Request request, Response response, Timing timings, int time) {
        this.pageref = pageref;
        this.startedDateTime = startedDateTime;
        this.request = request;
        this.response = response;
        this.timings = timings;
        this.time = time;

    }

    public String getStartedDateTime() {
        return startedDateTime;
    }

    public Request getRequest() {
        return request;
    }

    public Response getResponse() {
        return response;
    }

    public Timing getTimings() {
        return timings;
    }

    public int getTime() {
        return time;
    }

    public String getPageref() {
        return pageref;
    }

    public Map getCache() {
        return cache;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy