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

io.dekorate.halkyon.config.RequiredCapabilityConfig Maven / Gradle / Ivy

There is a newer version: 2.0.0.beta2
Show newest version
package io.dekorate.halkyon.config;

import io.dekorate.project.Project;
import io.dekorate.kubernetes.config.ConfigKey;
import io.dekorate.kubernetes.config.Configuration;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import io.sundr.builder.annotations.Buildable;

@io.sundr.builder.annotations.Buildable(builderPackage = "io.dekorate.deps.kubernetes.api.builder") public class RequiredCapabilityConfig extends Configuration {

    private String name = "";
    private String category = "";
    private String type = "";
    private String boundTo = "";
    private boolean autoBindable = false;
    private io.dekorate.halkyon.config.Parameter[] parameters = new io.dekorate.halkyon.config.Parameter[0];

    public RequiredCapabilityConfig() { 
    }


    public RequiredCapabilityConfig(Project project,Map attributes,String name,String category,String type,String boundTo,boolean autoBindable,io.dekorate.halkyon.config.Parameter[] parameters) { 
        super(project, attributes);
        this.name = name != null ? name : "";
        this.category = category != null ? category : "";
        this.type = type != null ? type : "";
        this.boundTo = boundTo != null ? boundTo : "";
        this.autoBindable = autoBindable;
        this.parameters = parameters != null ? parameters : new io.dekorate.halkyon.config.Parameter[0];
    }


    public String getName() {
        return this.name;
    }

    public String getCategory() {
        return this.category;
    }

    public String getType() {
        return this.type;
    }

    public String getBoundTo() {
        return this.boundTo;
    }

    public boolean isAutoBindable() {
        return this.autoBindable;
    }

    public io.dekorate.halkyon.config.Parameter[] getParameters() {
        return this.parameters;
    }

    public static RequiredCapabilityConfigBuilder newRequiredCapabilityConfigBuilder() {
        return new io.dekorate.halkyon.config.RequiredCapabilityConfigBuilder();
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        if (!super.equals(o)) return false;
        RequiredCapabilityConfig that = (RequiredCapabilityConfig) o;
        if (name != null ? !name.equals(that.name) :that.name != null) return false;
        if (category != null ? !category.equals(that.category) :that.category != null) return false;
        if (type != null ? !type.equals(that.type) :that.type != null) return false;
        if (boundTo != null ? !boundTo.equals(that.boundTo) :that.boundTo != null) return false;
        if (autoBindable != that.autoBindable) return false;
        if (parameters != null ? !parameters.equals(that.parameters) :that.parameters != null) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(name,  category,  type,  boundTo,  autoBindable,  parameters,  super.hashCode());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy