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

com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.LoginAzure Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;

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

public class LoginAzure {
    //region Members
    // Partial Update support
    @JsonIgnore
    private Set isSet;
    private String      userName;
    private String      sshPublicKey;
    private String      password;

    //endregion

    //region Constructors
    private LoginAzure() {
        isSet = new HashSet<>();
    }

    //endregion

    //region Getters & Setters

    public Set getIsSet() {
        return isSet;
    }

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

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        isSet.add("userName");
        this.userName = userName;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        isSet.add("password");
        this.password = password;
    }

    public String getSshPublicKey() {
        return sshPublicKey;
    }

    public void setSshPublicKey(String sshPublicKey) {
        isSet.add("sshPublicKey");
        this.sshPublicKey = sshPublicKey;
    }
    //endregion

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

        LoginAzure tag = (LoginAzure) o;

        if (!userName.equals(tag.userName)) {
            return false;
        }
        return sshPublicKey.equals(tag.sshPublicKey);

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

    //endregion
    //region Builder class
    public static class Builder {
        private LoginAzure loginAzure;

        private Builder() {
            this.loginAzure = new LoginAzure();
        }

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

        public Builder setUserName(final String userName) {
            loginAzure.setUserName(userName);
            return this;
        }

        public Builder setSshPublicKey(final String sshPublicKey) {
            loginAzure.setSshPublicKey(sshPublicKey);
            return this;
        }
        public Builder setPassword(final String password) {
            loginAzure.setPassword(password);
            return this;
        }

        public LoginAzure build() {
            // TODO : Validations
            return loginAzure;
        }
    }
    //endregion

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

    @JsonIgnore
    public boolean isPasswordSet() {
        return isSet.contains("password");
    }

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

    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy