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

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

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

import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;

public class KubernetesIntegrationTestConfigFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements KubernetesIntegrationTestConfigFluent {

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

    public KubernetesIntegrationTestConfigFluentImpl() {
    }

    public KubernetesIntegrationTestConfigFluentImpl(KubernetesIntegrationTestConfig instance) {
        this.withDeployEnabled(instance.isDeployEnabled()); 
        this.withBuildEnabled(instance.isBuildEnabled()); 
        this.withReadinessTimeout(instance.getReadinessTimeout()); 
    }

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

    public A withDeployEnabled(boolean deployEnabled) {
        this.deployEnabled=deployEnabled; return (A) this;
    }

    public Boolean hasDeployEnabled() {
        return true;
    }

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

    public A withBuildEnabled(boolean buildEnabled) {
        this.buildEnabled=buildEnabled; return (A) this;
    }

    public Boolean hasBuildEnabled() {
        return true;
    }

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

    public A withReadinessTimeout(long readinessTimeout) {
        this.readinessTimeout=readinessTimeout; return (A) this;
    }

    public Boolean hasReadinessTimeout() {
        return true;
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        KubernetesIntegrationTestConfigFluentImpl that = (KubernetesIntegrationTestConfigFluentImpl) 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