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

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

package io.kubernetes.client.models;

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 PolicyV1beta1AllowedFlexVolumeFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements PolicyV1beta1AllowedFlexVolumeFluent{

    private String driver;

    public PolicyV1beta1AllowedFlexVolumeFluentImpl(){
    }
    public PolicyV1beta1AllowedFlexVolumeFluentImpl(PolicyV1beta1AllowedFlexVolume instance){
            this.withDriver(instance.getDriver());

    }

    public String getDriver(){
            return this.driver;
    }

    public A withDriver(String driver){
            this.driver=driver; return (A) this;
    }

    public Boolean hasDriver(){
            return this.driver != null;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy