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

com.spotinst.sdkjava.model.bl.aws.managedInstance.Domains Maven / Gradle / Ivy

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

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.List;
import java.util.Set;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Domains {

    @JsonIgnore
    private Set         isSet;
    private String              hostedZoneId;
    private List    recordSets;
    private String              recordSetType;
    private String              spotinstAccountId;

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

    public Set getIsSet() {
        return isSet;
    }

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

    public String getHostedZoneId() {
        return hostedZoneId;
    }

    public void setHostedZoneId(String hostedZoneId) {
        isSet.add("hostedZoneId");
        this.hostedZoneId = hostedZoneId;
    }

    public List getRecordSets() {
        return recordSets;
    }

    public void setRecordSets(List recordSets) {
        isSet.add("recordSets");
        this.recordSets = recordSets;
    }

    public String getRecordSetType() {
        return recordSetType;
    }

    public void setRecordSetType(String recordSetType) {
        isSet.add("recordSetType");
        this.recordSetType = recordSetType;
    }

    public String getSpotinstAccountId() {
        return spotinstAccountId;
    }

    public void setSpotinstAccountId(String spotinstAccountId) {
        isSet.add("spotinstAccountId");
        this.spotinstAccountId = spotinstAccountId;
    }

    public static class Builder {
        private Domains domains;

        private Builder() {
            this.domains = new Domains();
        }

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

        public Builder setHostedZoneId(final String hostedZoneId) {
            domains.setHostedZoneId(hostedZoneId);
            return this;
        }

        public Builder setRecordSets(final List recordSets) {
            domains.setRecordSets(recordSets);
            return this;
        }

        public Builder setRecordSetType(final String recordSetType) {
            domains.setRecordSetType(recordSetType);
            return this;
        }

        public Builder setSpotinstAccountId(final String spotinstAccountId) {
            domains.setSpotinstAccountId(spotinstAccountId);
            return this;
        }

        public Domains build() {
            return domains;
        }
    }

    @JsonIgnore
    public boolean isHostedZoneIdSet() {
        return isSet.contains("hostedZoneId");
    }

    @JsonIgnore
    public boolean isRecordSetsSet() {
        return isSet.contains("recordSets");
    }

    @JsonIgnore
    public boolean isRecordSetTypeSet() {
        return isSet.contains("recordSetType");
    }

    @JsonIgnore
    public boolean isSpotinstAccountIdSet() {
        return isSet.contains("spotinstAccountId");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy