io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventAttributesFluentImpl Maven / Gradle / Ivy
package io.fabric8.knative.internal.pkg.apis.duck.v1;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class CloudEventAttributesFluentImpl> extends BaseFluent implements CloudEventAttributesFluent{
public CloudEventAttributesFluentImpl() {
}
public CloudEventAttributesFluentImpl(io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventAttributes instance) {
this.withSource(instance.getSource());
this.withType(instance.getType());
}
private String source;
private java.lang.String type;
public java.lang.String getSource() {
return this.source;
}
public A withSource(java.lang.String source) {
this.source=source; return (A) this;
}
public Boolean hasSource() {
return this.source != null;
}
public java.lang.String getType() {
return this.type;
}
public A withType(java.lang.String type) {
this.type=type; return (A) this;
}
public java.lang.Boolean hasType() {
return this.type != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CloudEventAttributesFluentImpl that = (CloudEventAttributesFluentImpl) o;
if (source != null ? !source.equals(that.source) :that.source != null) return false;
if (type != null ? !type.equals(that.type) :that.type != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(source, type, super.hashCode());
}
public java.lang.String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (source != null) { sb.append("source:"); sb.append(source + ","); }
if (type != null) { sb.append("type:"); sb.append(type); }
sb.append("}");
return sb.toString();
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy