io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventAttributesFluent 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;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class CloudEventAttributesFluent> extends BaseFluent{
public CloudEventAttributesFluent() {
}
public CloudEventAttributesFluent(CloudEventAttributes instance) {
instance = (instance != null ? instance : new CloudEventAttributes());
if (instance != null) {
this.withSource(instance.getSource());
this.withType(instance.getType());
this.withSource(instance.getSource());
this.withType(instance.getType());
}
}
private String source;
private String type;
public String getSource() {
return this.source;
}
public A withSource(String source) {
this.source=source; return (A) this;
}
public boolean hasSource() {
return this.source != null;
}
public String getType() {
return this.type;
}
public A withType(String type) {
this.type=type; return (A) this;
}
public boolean hasType() {
return this.type != 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;
CloudEventAttributesFluent that = (CloudEventAttributesFluent) o;
if (!java.util.Objects.equals(source, that.source)) return false;
if (!java.util.Objects.equals(type, that.type)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(source, type, super.hashCode());
}
public 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