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

io.dekorate.testing.config.KubernetesIntegrationTestConfig Maven / Gradle / Ivy

There is a newer version: 4.1.4
Show newest version
package io.dekorate.testing.config;

import java.lang.Object;
import io.sundr.builder.annotations.Buildable;

@Buildable(builderPackage = "io.fabric8.kubernetes.api.builder") public class KubernetesIntegrationTestConfig {

    private boolean deployEnabled;
    private boolean buildEnabled;
    private long readinessTimeout;

    public KubernetesIntegrationTestConfig() {
    }

    public KubernetesIntegrationTestConfig(boolean deployEnabled,boolean buildEnabled,long readinessTimeout) {
        this.deployEnabled = deployEnabled;
        this.buildEnabled = buildEnabled;
        this.readinessTimeout = readinessTimeout;
    }

    public boolean isDeployEnabled() {
        return this.deployEnabled;
    }

    public boolean isBuildEnabled() {
        return this.buildEnabled;
    }

    public long getReadinessTimeout() {
        return this.readinessTimeout;
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        KubernetesIntegrationTestConfig that = (KubernetesIntegrationTestConfig) o;
        if (deployEnabled != that.deployEnabled) return false;
        if (buildEnabled != that.buildEnabled) return false;
        if (readinessTimeout != that.readinessTimeout) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(deployEnabled,  buildEnabled,  readinessTimeout,  super.hashCode());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy