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

com.spotinst.sdkjava.model.ElastigroupMatcher 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 ElastigroupMatcher {
    @JsonIgnore
    private Set isSet;
    private String httpCode;
    private String grpcCode;

    //region Constructor

    private ElastigroupMatcher() {
        isSet = new HashSet<>();
    }
    //endregion

    public Set getIsSet() {
        return isSet;
    }

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

    public String getHttpCode() {
        return httpCode;
    }

    public void setHttpCode(String httpCode) {
        isSet.add("httpCode");
        this.httpCode = httpCode;
    }

    public String getGrpcCode() {
        return grpcCode;
    }

    public void setGrpcCode(String grpcCode) {
        isSet.add("grpcCode");
        this.grpcCode = grpcCode;
    }

    //region Builder class
    public static class Builder {
        private ElastigroupMatcher itfMatcher;

        private Builder() {
            this.itfMatcher = new ElastigroupMatcher();
        }

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

        public Builder setHttpCode(final String httpCode) {
            itfMatcher.setHttpCode(httpCode);
            return this;
        }

        public Builder setGrpcCode(final String grpcCode) {
            itfMatcher.setGrpcCode(grpcCode);
            return this;
        }

        public ElastigroupMatcher build() {
            return itfMatcher;
        }
    }

    //endregion

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

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

    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy