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

io.kubernetes.client.models.V1ClientIPConfigFluentImpl Maven / Gradle / Ivy

package io.kubernetes.client.models;

import java.lang.Integer;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;

public class V1ClientIPConfigFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ClientIPConfigFluent{

    private Integer timeoutSeconds;

    public V1ClientIPConfigFluentImpl(){
    }
    public V1ClientIPConfigFluentImpl(V1ClientIPConfig instance){
            this.withTimeoutSeconds(instance.getTimeoutSeconds());

    }

    public Integer getTimeoutSeconds(){
            return this.timeoutSeconds;
    }

    public A withTimeoutSeconds(Integer timeoutSeconds){
            this.timeoutSeconds=timeoutSeconds; return (A) this;
    }

    public Boolean hasTimeoutSeconds(){
            return this.timeoutSeconds != null;
    }

    public A withNewTimeoutSeconds(int arg1){
            return (A)withTimeoutSeconds(new Integer(arg1));
    }

    public A withNewTimeoutSeconds(String arg1){
            return (A)withTimeoutSeconds(new Integer(arg1));
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            V1ClientIPConfigFluentImpl that = (V1ClientIPConfigFluentImpl) o;
            if (timeoutSeconds != null ? !timeoutSeconds.equals(that.timeoutSeconds) :that.timeoutSeconds != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy