de.sstoehr.harreader.model.Har Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of har-reader Show documentation
Show all versions of har-reader Show documentation
A library to access HTTP archive format with Java
package de.sstoehr.harreader.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.Objects;
/**
* Main HTTP Archive Class.
* @see speicification
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Har {
private HarLog log;
/**
* @return HAR log.
*/
public HarLog getLog() {
if (log == null) {
log = new HarLog();
}
return log;
}
public void setLog(HarLog log) {
this.log = log;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Har har = (Har) o;
return Objects.equals(log, har.log);
}
@Override
public int hashCode() {
return Objects.hash(log);
}
}