me.snowdrop.istio.api.mesh.v1alpha1.TracingFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.api.mesh.v1alpha1;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import java.lang.Boolean;
public class TracingFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements TracingFluent{
private me.snowdrop.istio.api.mesh.v1alpha1.Tracing.Tracer tracer;
public TracingFluentImpl(){
}
public TracingFluentImpl(Tracing instance){
this.withTracer(instance.getTracer());
}
public me.snowdrop.istio.api.mesh.v1alpha1.Tracing.Tracer getTracer(){
return this.tracer;
}
public A withTracer(me.snowdrop.istio.api.mesh.v1alpha1.Tracing.Tracer tracer){
this.tracer=tracer; return (A) this;
}
public Boolean hasTracer(){
return this.tracer != 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;
TracingFluentImpl that = (TracingFluentImpl) o;
if (tracer != null ? !tracer.equals(that.tracer) :that.tracer != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy