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

de.sstoehr.harreader.model.HarCookie Maven / Gradle / Ivy

The newest version!
package de.sstoehr.harreader.model;

import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Builder;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.time.ZonedDateTime;
import java.util.HashMap;
import java.util.Map;

/**
 * Information about a cookie used in request and/or response.
 * @see specification
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Builder(toBuilder = true)
public record HarCookie(
        @Nullable String name,
        @Nullable String value,
        @Nullable String path,
        @Nullable String domain,
        @Nullable @JsonFormat(shape = JsonFormat.Shape.STRING) ZonedDateTime expires,
        @Nullable Boolean httpOnly,
        @Nullable Boolean secure,
        @Nullable String comment,
        @Nonnull Map additional) {

    public HarCookie() {
        this(null, null, null, null, null, null, null, null, new HashMap<>());
    }

    public HarCookie(@Nullable String name,
                     @Nullable String value,
                     @Nullable String path,
                     @Nullable String domain,
                     @Nullable ZonedDateTime expires,
                     @Nullable Boolean httpOnly,
                     @Nullable Boolean secure,
                     @Nullable String comment,
                     @Nullable Map additional) {
        this.name = name;
        this.value = value;
        this.path = path;
        this.domain = domain;
        this.expires = expires;
        this.httpOnly = httpOnly;
        this.secure = secure;
        this.comment = comment;
        this.additional = (additional == null) ? new HashMap<>() : additional;
    }

    /**
     * @return Map with additional keys, which are not officially supported by the HAR specification
     */
    @JsonAnyGetter
    public Map additional() {
        return additional;
    }

    @JsonAnySetter
    public void setAdditionalField(String key, Object value) {
        this.additional.put(key, value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy