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

com.spotinst.sdkjava.model.bl.ocean.kubernetes.K8sVngTag Maven / Gradle / Ivy

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


import com.fasterxml.jackson.annotation.JsonIgnore;

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


public class K8sVngTag {

    @JsonIgnore
    private Set isSet;
    private String tagKey;
    private String tagValue;

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

    public Set getIsSet() {
        return isSet;
    }

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

    public String getTagKey() {
        return tagKey;
    }

    public void setTagKey(String tagKey) {
        isSet.add("tagKey");
        this.tagKey = tagKey;
    }

    public String getTagValue() {
        return tagValue;
    }

    public void setTagValue(String tagValue) {
        isSet.add("tagValue");
        this.tagValue = tagValue;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        K8sVngTag k8sVngTag = (K8sVngTag) o;

        if (!tagKey.equals(k8sVngTag.tagKey)) return false;
        return tagValue.equals(k8sVngTag.tagValue);

    }

    @Override
    public int hashCode() {
        int result = tagKey.hashCode();
        result = 31 * result + tagValue.hashCode();
        return result;
    }

    public static class Builder {
        private K8sVngTag tag;

        private Builder() {
            this.tag = new K8sVngTag();
        }

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

        public Builder setTagKey(final String tagKey) {
            tag.setTagKey(tagKey);
            return this;
        }

        public Builder setTagValue(final String tagValue) {
            tag.setTagValue(tagValue);
            return this;
        }

        public K8sVngTag build() {
            return tag;
        }
    }

    @JsonIgnore
    public boolean isTagKeySet() {
        return isSet.contains("tagKey");
    }

    @JsonIgnore
    public boolean isTagValueSet() {
        return isSet.contains("tagValue");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy