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

me.snowdrop.istio.api.networking.v1alpha3.HeaderOperations Maven / Gradle / Ivy


package me.snowdrop.istio.api.networking.v1alpha3;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import io.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;


/**
 * 
 * 
 */
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
    "apiVersion",
    "kind",
    "metadata",
    "add",
    "remove",
    "set"
})
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.kubernetes.api.builder", inline = {
    @Inline(type = Doneable.class, prefix = "Doneable", value = "done")
}, refs = {
    @BuildableReference(ObjectMeta.class)
})
public class HeaderOperations implements Serializable
{

    /**
     * 
     * 
     */
    @JsonProperty("add")
    @JsonPropertyDescription("")
    @Valid
    private Map add;
    /**
     * 
     * 
     */
    @JsonProperty("remove")
    @JsonPropertyDescription("")
    @Valid
    private List remove = new ArrayList();
    /**
     * 
     * 
     */
    @JsonProperty("set")
    @JsonPropertyDescription("")
    @Valid
    private Map set;
    private final static long serialVersionUID = 759671593649395778L;

    /**
     * No args constructor for use in serialization
     * 
     */
    public HeaderOperations() {
    }

    /**
     * 
     * @param add
     * @param set
     * @param remove
     */
    public HeaderOperations(Map add, List remove, Map set) {
        super();
        this.add = add;
        this.remove = remove;
        this.set = set;
    }

    /**
     * 
     * 
     */
    @JsonProperty("add")
    public Map getAdd() {
        return add;
    }

    /**
     * 
     * 
     */
    @JsonProperty("add")
    public void setAdd(Map add) {
        this.add = add;
    }

    /**
     * 
     * 
     */
    @JsonProperty("remove")
    public List getRemove() {
        return remove;
    }

    /**
     * 
     * 
     */
    @JsonProperty("remove")
    public void setRemove(List remove) {
        this.remove = remove;
    }

    /**
     * 
     * 
     */
    @JsonProperty("set")
    public Map getSet() {
        return set;
    }

    /**
     * 
     * 
     */
    @JsonProperty("set")
    public void setSet(Map set) {
        this.set = set;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy