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

com.spotinst.sdkjava.model.ElastigroupDeploymentGroup Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;

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

public class ElastigroupDeploymentGroup {
    //region Members
    @JsonIgnore
    private Set isSet;
    private String      applicationName;
    private String      deploymentGroupName;
    //endregion

    //region Constructors
    private ElastigroupDeploymentGroup() {
        isSet = new HashSet<>();
    }
    //region Getters & Setters

    public Set getIsSet() {
        return isSet;
    }

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

    public String getApplicationName() {
        return applicationName;
    }

    public void setApplicationName (String applicationName) {
        isSet.add("applicationName");
        this.applicationName = applicationName;
    }

    public String getDeploymentGroupName() {
        return deploymentGroupName;
    }

    public void setDeploymentGroupName(String deploymentGroupName) {
        isSet.add("deploymentGroupName");
        this.deploymentGroupName = deploymentGroupName;
    }

    //endregion

    //region Builder class
    public static class Builder {
        private ElastigroupDeploymentGroup deploymentGroups;

        private Builder() {
            this.deploymentGroups = new ElastigroupDeploymentGroup();
        }

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

        public Builder setApplicationName (final String applicationName){
            deploymentGroups.setApplicationName(applicationName);
            return this;
        }

        public Builder setDeploymentGroupName (final String deploymentGroupName){
            deploymentGroups.setDeploymentGroupName(deploymentGroupName);
            return this;
        }

        public ElastigroupDeploymentGroup build(){return deploymentGroups;}

    }
    //endregion

    //region isSet methods
    // Is applicationName Set boolean method
    @JsonIgnore
    public boolean isApplicationNameSet() {
        return isSet.contains("applicationName");
    }

    // Is deploymentGroupName Set boolean method
    @JsonIgnore
    public boolean isDeploymentGroupNameSet() {
        return isSet.contains("deploymentGroupName");
    }

    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy