annotations.me.snowdrop.istio.adapter.stackdriver.ServiceAccountPathCredsFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.adapter.stackdriver;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class ServiceAccountPathCredsFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements ServiceAccountPathCredsFluent{
private String serviceAccountPath;
public ServiceAccountPathCredsFluentImpl(){
}
public ServiceAccountPathCredsFluentImpl(ServiceAccountPathCreds instance){
this.withServiceAccountPath(instance.getServiceAccountPath());
}
public String getServiceAccountPath(){
return this.serviceAccountPath;
}
public A withServiceAccountPath(String serviceAccountPath){
this.serviceAccountPath=serviceAccountPath; return (A) this;
}
public Boolean hasServiceAccountPath(){
return this.serviceAccountPath != 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;
ServiceAccountPathCredsFluentImpl that = (ServiceAccountPathCredsFluentImpl) o;
if (serviceAccountPath != null ? !serviceAccountPath.equals(that.serviceAccountPath) :that.serviceAccountPath != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy