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

com.spotinst.sdkjava.model.bl.oceanCD.WebHeaders Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model.bl.oceanCD;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.HashSet;
import java.util.Set;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class WebHeaders {
    @JsonIgnore
    private Set                               isSet;
    private String                                    key;
    private String                                    value;

    private WebHeaders() {
        isSet = new HashSet<>();
    }

    public Set getIsSet() {
        return isSet;
    }

    public void setIsSet(Set isSet) {
        this.isSet = isSet;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        isSet.add("key");
        this.key = key;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        isSet.add("value");
        this.value = value;
    }

    public static class Builder {
        private WebHeaders webHeaders;

        private Builder() {
            this.webHeaders = new WebHeaders();
        }

        public static Builder get() {
            return new Builder();
        }

        public Builder setKey(final String key) {
            webHeaders.setKey(key);
            return this;
        }

        public Builder setValue(final String value) {
            webHeaders.setValue(value);
            return this;
        }

        public WebHeaders build() {
            return webHeaders;
        }
    }

    @JsonIgnore
    public boolean isKeySet() {
        return isSet.contains("key");
    }

    @JsonIgnore
    public boolean isValueSet() {
        return isSet.contains("value");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy