
org.cdk8s.plus23.k8s.KubeEventProps Maven / Gradle / Ivy
package org.cdk8s.plus23.k8s;
/**
* Event is a report of an event somewhere in the cluster.
*
* It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.75.0 (build 63bb957)", date = "2023-02-21T09:46:03.895Z")
@software.amazon.jsii.Jsii(module = org.cdk8s.plus23.$Module.class, fqn = "cdk8s-plus-23.k8s.KubeEventProps")
@software.amazon.jsii.Jsii.Proxy(KubeEventProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface KubeEventProps extends software.amazon.jsii.JsiiSerializable {
/**
* eventTime is the time when this Event was first observed.
*
* It is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull java.time.Instant getEventTime();
/**
* action is what action was taken/failed regarding to the regarding object.
*
* It is machine-readable. This field cannot be empty for new Events and it can have at most 128 characters.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getAction() {
return null;
}
/**
* deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.Number getDeprecatedCount() {
return null;
}
/**
* deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.time.Instant getDeprecatedFirstTimestamp() {
return null;
}
/**
* deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.time.Instant getDeprecatedLastTimestamp() {
return null;
}
/**
* deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.EventSource getDeprecatedSource() {
return null;
}
/**
* Standard object's metadata.
*
* More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.ObjectMeta getMetadata() {
return null;
}
/**
* note is a human-readable description of the status of this operation.
*
* Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getNote() {
return null;
}
/**
* reason is why the action was taken.
*
* It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getReason() {
return null;
}
/**
* regarding contains the object this Event is about.
*
* In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.ObjectReference getRegarding() {
return null;
}
/**
* related is the optional secondary object for more complex actions.
*
* E.g. when regarding object triggers a creation or deletion of related object.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.ObjectReference getRelated() {
return null;
}
/**
* reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getReportingController() {
return null;
}
/**
* reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getReportingInstance() {
return null;
}
/**
* series is data about the Event series this event represents or nil if it's a singleton Event.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.EventSeries getSeries() {
return null;
}
/**
* type is the type of this event (Normal, Warning), new types could be added in the future.
*
* It is machine-readable. This field cannot be empty for new Events.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getType() {
return null;
}
/**
* @return a {@link Builder} of {@link KubeEventProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link KubeEventProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
java.time.Instant eventTime;
java.lang.String action;
java.lang.Number deprecatedCount;
java.time.Instant deprecatedFirstTimestamp;
java.time.Instant deprecatedLastTimestamp;
org.cdk8s.plus23.k8s.EventSource deprecatedSource;
org.cdk8s.plus23.k8s.ObjectMeta metadata;
java.lang.String note;
java.lang.String reason;
org.cdk8s.plus23.k8s.ObjectReference regarding;
org.cdk8s.plus23.k8s.ObjectReference related;
java.lang.String reportingController;
java.lang.String reportingInstance;
org.cdk8s.plus23.k8s.EventSeries series;
java.lang.String type;
/**
* Sets the value of {@link KubeEventProps#getEventTime}
* @param eventTime eventTime is the time when this Event was first observed. This parameter is required.
* It is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder eventTime(java.time.Instant eventTime) {
this.eventTime = eventTime;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getAction}
* @param action action is what action was taken/failed regarding to the regarding object.
* It is machine-readable. This field cannot be empty for new Events and it can have at most 128 characters.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder action(java.lang.String action) {
this.action = action;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getDeprecatedCount}
* @param deprecatedCount deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder deprecatedCount(java.lang.Number deprecatedCount) {
this.deprecatedCount = deprecatedCount;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getDeprecatedFirstTimestamp}
* @param deprecatedFirstTimestamp deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder deprecatedFirstTimestamp(java.time.Instant deprecatedFirstTimestamp) {
this.deprecatedFirstTimestamp = deprecatedFirstTimestamp;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getDeprecatedLastTimestamp}
* @param deprecatedLastTimestamp deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder deprecatedLastTimestamp(java.time.Instant deprecatedLastTimestamp) {
this.deprecatedLastTimestamp = deprecatedLastTimestamp;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getDeprecatedSource}
* @param deprecatedSource deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder deprecatedSource(org.cdk8s.plus23.k8s.EventSource deprecatedSource) {
this.deprecatedSource = deprecatedSource;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getMetadata}
* @param metadata Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder metadata(org.cdk8s.plus23.k8s.ObjectMeta metadata) {
this.metadata = metadata;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getNote}
* @param note note is a human-readable description of the status of this operation.
* Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder note(java.lang.String note) {
this.note = note;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getReason}
* @param reason reason is why the action was taken.
* It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder reason(java.lang.String reason) {
this.reason = reason;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getRegarding}
* @param regarding regarding contains the object this Event is about.
* In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder regarding(org.cdk8s.plus23.k8s.ObjectReference regarding) {
this.regarding = regarding;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getRelated}
* @param related related is the optional secondary object for more complex actions.
* E.g. when regarding object triggers a creation or deletion of related object.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder related(org.cdk8s.plus23.k8s.ObjectReference related) {
this.related = related;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getReportingController}
* @param reportingController reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder reportingController(java.lang.String reportingController) {
this.reportingController = reportingController;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getReportingInstance}
* @param reportingInstance reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder reportingInstance(java.lang.String reportingInstance) {
this.reportingInstance = reportingInstance;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getSeries}
* @param series series is data about the Event series this event represents or nil if it's a singleton Event.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder series(org.cdk8s.plus23.k8s.EventSeries series) {
this.series = series;
return this;
}
/**
* Sets the value of {@link KubeEventProps#getType}
* @param type type is the type of this event (Normal, Warning), new types could be added in the future.
* It is machine-readable. This field cannot be empty for new Events.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder type(java.lang.String type) {
this.type = type;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link KubeEventProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public KubeEventProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link KubeEventProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements KubeEventProps {
private final java.time.Instant eventTime;
private final java.lang.String action;
private final java.lang.Number deprecatedCount;
private final java.time.Instant deprecatedFirstTimestamp;
private final java.time.Instant deprecatedLastTimestamp;
private final org.cdk8s.plus23.k8s.EventSource deprecatedSource;
private final org.cdk8s.plus23.k8s.ObjectMeta metadata;
private final java.lang.String note;
private final java.lang.String reason;
private final org.cdk8s.plus23.k8s.ObjectReference regarding;
private final org.cdk8s.plus23.k8s.ObjectReference related;
private final java.lang.String reportingController;
private final java.lang.String reportingInstance;
private final org.cdk8s.plus23.k8s.EventSeries series;
private final java.lang.String type;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.eventTime = software.amazon.jsii.Kernel.get(this, "eventTime", software.amazon.jsii.NativeType.forClass(java.time.Instant.class));
this.action = software.amazon.jsii.Kernel.get(this, "action", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.deprecatedCount = software.amazon.jsii.Kernel.get(this, "deprecatedCount", software.amazon.jsii.NativeType.forClass(java.lang.Number.class));
this.deprecatedFirstTimestamp = software.amazon.jsii.Kernel.get(this, "deprecatedFirstTimestamp", software.amazon.jsii.NativeType.forClass(java.time.Instant.class));
this.deprecatedLastTimestamp = software.amazon.jsii.Kernel.get(this, "deprecatedLastTimestamp", software.amazon.jsii.NativeType.forClass(java.time.Instant.class));
this.deprecatedSource = software.amazon.jsii.Kernel.get(this, "deprecatedSource", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.EventSource.class));
this.metadata = software.amazon.jsii.Kernel.get(this, "metadata", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.ObjectMeta.class));
this.note = software.amazon.jsii.Kernel.get(this, "note", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.reason = software.amazon.jsii.Kernel.get(this, "reason", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.regarding = software.amazon.jsii.Kernel.get(this, "regarding", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.ObjectReference.class));
this.related = software.amazon.jsii.Kernel.get(this, "related", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.ObjectReference.class));
this.reportingController = software.amazon.jsii.Kernel.get(this, "reportingController", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.reportingInstance = software.amazon.jsii.Kernel.get(this, "reportingInstance", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.series = software.amazon.jsii.Kernel.get(this, "series", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.EventSeries.class));
this.type = software.amazon.jsii.Kernel.get(this, "type", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.eventTime = java.util.Objects.requireNonNull(builder.eventTime, "eventTime is required");
this.action = builder.action;
this.deprecatedCount = builder.deprecatedCount;
this.deprecatedFirstTimestamp = builder.deprecatedFirstTimestamp;
this.deprecatedLastTimestamp = builder.deprecatedLastTimestamp;
this.deprecatedSource = builder.deprecatedSource;
this.metadata = builder.metadata;
this.note = builder.note;
this.reason = builder.reason;
this.regarding = builder.regarding;
this.related = builder.related;
this.reportingController = builder.reportingController;
this.reportingInstance = builder.reportingInstance;
this.series = builder.series;
this.type = builder.type;
}
@Override
public final java.time.Instant getEventTime() {
return this.eventTime;
}
@Override
public final java.lang.String getAction() {
return this.action;
}
@Override
public final java.lang.Number getDeprecatedCount() {
return this.deprecatedCount;
}
@Override
public final java.time.Instant getDeprecatedFirstTimestamp() {
return this.deprecatedFirstTimestamp;
}
@Override
public final java.time.Instant getDeprecatedLastTimestamp() {
return this.deprecatedLastTimestamp;
}
@Override
public final org.cdk8s.plus23.k8s.EventSource getDeprecatedSource() {
return this.deprecatedSource;
}
@Override
public final org.cdk8s.plus23.k8s.ObjectMeta getMetadata() {
return this.metadata;
}
@Override
public final java.lang.String getNote() {
return this.note;
}
@Override
public final java.lang.String getReason() {
return this.reason;
}
@Override
public final org.cdk8s.plus23.k8s.ObjectReference getRegarding() {
return this.regarding;
}
@Override
public final org.cdk8s.plus23.k8s.ObjectReference getRelated() {
return this.related;
}
@Override
public final java.lang.String getReportingController() {
return this.reportingController;
}
@Override
public final java.lang.String getReportingInstance() {
return this.reportingInstance;
}
@Override
public final org.cdk8s.plus23.k8s.EventSeries getSeries() {
return this.series;
}
@Override
public final java.lang.String getType() {
return this.type;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("eventTime", om.valueToTree(this.getEventTime()));
if (this.getAction() != null) {
data.set("action", om.valueToTree(this.getAction()));
}
if (this.getDeprecatedCount() != null) {
data.set("deprecatedCount", om.valueToTree(this.getDeprecatedCount()));
}
if (this.getDeprecatedFirstTimestamp() != null) {
data.set("deprecatedFirstTimestamp", om.valueToTree(this.getDeprecatedFirstTimestamp()));
}
if (this.getDeprecatedLastTimestamp() != null) {
data.set("deprecatedLastTimestamp", om.valueToTree(this.getDeprecatedLastTimestamp()));
}
if (this.getDeprecatedSource() != null) {
data.set("deprecatedSource", om.valueToTree(this.getDeprecatedSource()));
}
if (this.getMetadata() != null) {
data.set("metadata", om.valueToTree(this.getMetadata()));
}
if (this.getNote() != null) {
data.set("note", om.valueToTree(this.getNote()));
}
if (this.getReason() != null) {
data.set("reason", om.valueToTree(this.getReason()));
}
if (this.getRegarding() != null) {
data.set("regarding", om.valueToTree(this.getRegarding()));
}
if (this.getRelated() != null) {
data.set("related", om.valueToTree(this.getRelated()));
}
if (this.getReportingController() != null) {
data.set("reportingController", om.valueToTree(this.getReportingController()));
}
if (this.getReportingInstance() != null) {
data.set("reportingInstance", om.valueToTree(this.getReportingInstance()));
}
if (this.getSeries() != null) {
data.set("series", om.valueToTree(this.getSeries()));
}
if (this.getType() != null) {
data.set("type", om.valueToTree(this.getType()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("cdk8s-plus-23.k8s.KubeEventProps"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
KubeEventProps.Jsii$Proxy that = (KubeEventProps.Jsii$Proxy) o;
if (!eventTime.equals(that.eventTime)) return false;
if (this.action != null ? !this.action.equals(that.action) : that.action != null) return false;
if (this.deprecatedCount != null ? !this.deprecatedCount.equals(that.deprecatedCount) : that.deprecatedCount != null) return false;
if (this.deprecatedFirstTimestamp != null ? !this.deprecatedFirstTimestamp.equals(that.deprecatedFirstTimestamp) : that.deprecatedFirstTimestamp != null) return false;
if (this.deprecatedLastTimestamp != null ? !this.deprecatedLastTimestamp.equals(that.deprecatedLastTimestamp) : that.deprecatedLastTimestamp != null) return false;
if (this.deprecatedSource != null ? !this.deprecatedSource.equals(that.deprecatedSource) : that.deprecatedSource != null) return false;
if (this.metadata != null ? !this.metadata.equals(that.metadata) : that.metadata != null) return false;
if (this.note != null ? !this.note.equals(that.note) : that.note != null) return false;
if (this.reason != null ? !this.reason.equals(that.reason) : that.reason != null) return false;
if (this.regarding != null ? !this.regarding.equals(that.regarding) : that.regarding != null) return false;
if (this.related != null ? !this.related.equals(that.related) : that.related != null) return false;
if (this.reportingController != null ? !this.reportingController.equals(that.reportingController) : that.reportingController != null) return false;
if (this.reportingInstance != null ? !this.reportingInstance.equals(that.reportingInstance) : that.reportingInstance != null) return false;
if (this.series != null ? !this.series.equals(that.series) : that.series != null) return false;
return this.type != null ? this.type.equals(that.type) : that.type == null;
}
@Override
public final int hashCode() {
int result = this.eventTime.hashCode();
result = 31 * result + (this.action != null ? this.action.hashCode() : 0);
result = 31 * result + (this.deprecatedCount != null ? this.deprecatedCount.hashCode() : 0);
result = 31 * result + (this.deprecatedFirstTimestamp != null ? this.deprecatedFirstTimestamp.hashCode() : 0);
result = 31 * result + (this.deprecatedLastTimestamp != null ? this.deprecatedLastTimestamp.hashCode() : 0);
result = 31 * result + (this.deprecatedSource != null ? this.deprecatedSource.hashCode() : 0);
result = 31 * result + (this.metadata != null ? this.metadata.hashCode() : 0);
result = 31 * result + (this.note != null ? this.note.hashCode() : 0);
result = 31 * result + (this.reason != null ? this.reason.hashCode() : 0);
result = 31 * result + (this.regarding != null ? this.regarding.hashCode() : 0);
result = 31 * result + (this.related != null ? this.related.hashCode() : 0);
result = 31 * result + (this.reportingController != null ? this.reportingController.hashCode() : 0);
result = 31 * result + (this.reportingInstance != null ? this.reportingInstance.hashCode() : 0);
result = 31 * result + (this.series != null ? this.series.hashCode() : 0);
result = 31 * result + (this.type != null ? this.type.hashCode() : 0);
return result;
}
}
}