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

io.fabric8.kubernetes.api.model.FlockerVolumeSourceFluentImpl Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
package io.fabric8.kubernetes.api.model;

import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.String;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.Object;

public class FlockerVolumeSourceFluentImpl> extends BaseFluent implements FlockerVolumeSourceFluent{

    private String datasetName;

    public FlockerVolumeSourceFluentImpl(){
    }
    public FlockerVolumeSourceFluentImpl(FlockerVolumeSource instance){
            this.withDatasetName(instance.getDatasetName()); 
    }

    public String getDatasetName(){
            return this.datasetName;
    }

    public A withDatasetName(String datasetName){
            this.datasetName=datasetName; return (A) this;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy