me.snowdrop.istio.adapter.stackdriver.ApiKeyCredsFluentImpl 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 ApiKeyCredsFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements ApiKeyCredsFluent{
private String apiKey;
public ApiKeyCredsFluentImpl(){
}
public ApiKeyCredsFluentImpl(ApiKeyCreds instance){
this.withApiKey(instance.getApiKey());
}
public String getApiKey(){
return this.apiKey;
}
public A withApiKey(String apiKey){
this.apiKey=apiKey; return (A) this;
}
public Boolean hasApiKey(){
return this.apiKey != 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;
ApiKeyCredsFluentImpl that = (ApiKeyCredsFluentImpl) o;
if (apiKey != null ? !apiKey.equals(that.apiKey) :that.apiKey != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy