io.fabric8.knative.serving.v1.ContainerStatusFluentImpl Maven / Gradle / Ivy
package io.fabric8.knative.serving.v1;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class ContainerStatusFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.knative.serving.v1.ContainerStatusFluent {
private java.lang.String imageDigest;
private java.lang.String name;
public ContainerStatusFluentImpl() {
}
public ContainerStatusFluentImpl(io.fabric8.knative.serving.v1.ContainerStatus instance) {
this.withImageDigest(instance.getImageDigest());
this.withName(instance.getName());
}
public java.lang.String getImageDigest() {
return this.imageDigest;
}
public A withImageDigest(java.lang.String imageDigest) {
this.imageDigest=imageDigest; return (A) this;
}
public java.lang.Boolean hasImageDigest() {
return this.imageDigest != null;
}
@java.lang.Deprecated
/**
* Method is deprecated. use withImageDigest instead.
*/
public A withNewImageDigest(java.lang.String arg0) {
return (A)withImageDigest(new String(arg0));
}
public java.lang.String getName() {
return this.name;
}
public A withName(java.lang.String name) {
this.name=name; return (A) this;
}
public java.lang.Boolean hasName() {
return this.name != null;
}
@java.lang.Deprecated
/**
* Method is deprecated. use withName instead.
*/
public A withNewName(java.lang.String arg0) {
return (A)withName(new String(arg0));
}
public boolean equals(java.lang.Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ContainerStatusFluentImpl that = (ContainerStatusFluentImpl) o;
if (imageDigest != null ? !imageDigest.equals(that.imageDigest) :that.imageDigest != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(imageDigest, name, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy