Class StructuredExecutionReport
- java.lang.Object
-
- io.datahubproject.openapi.generated.StructuredExecutionReport
-
@Validated @Generated(value="io.swagger.codegen.v3.generators.java.SpringCodegen", date="2023-12-06T11:25:47.362934Z[Etc/UTC]") public class StructuredExecutionReport extends java.lang.ObjectA flexible carrier for structured results of an execution request. The goal is to allow for free flow of structured responses from execution tasks to the orchestrator or observer. The full spectrum of different execution report types is not intended to be modeled by this object.
-
-
Constructor Summary
Constructors Constructor Description StructuredExecutionReport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StructuredExecutionReportcontentType(java.lang.String contentType)booleanequals(java.lang.Object o)@NotNull java.lang.StringgetContentType()The content-type of the serialized value (e.g.@NotNull java.lang.StringgetSerializedValue()The serialized value of the structured report@NotNull java.lang.StringgetType()The type of the structured report.inthashCode()StructuredExecutionReportserializedValue(java.lang.String serializedValue)voidsetContentType(java.lang.String contentType)voidsetSerializedValue(java.lang.String serializedValue)voidsetType(java.lang.String type)java.lang.StringtoString()StructuredExecutionReporttype(java.lang.String type)
-
-
-
Method Detail
-
type
public StructuredExecutionReport type(java.lang.String type)
-
getType
@NotNull public @NotNull java.lang.String getType()
The type of the structured report. (e.g. INGESTION_REPORT, TEST_CONNECTION_REPORT, etc.)- Returns:
- type
-
setType
public void setType(java.lang.String type)
-
serializedValue
public StructuredExecutionReport serializedValue(java.lang.String serializedValue)
-
getSerializedValue
@NotNull public @NotNull java.lang.String getSerializedValue()
The serialized value of the structured report- Returns:
- serializedValue
-
setSerializedValue
public void setSerializedValue(java.lang.String serializedValue)
-
contentType
public StructuredExecutionReport contentType(java.lang.String contentType)
-
getContentType
@NotNull public @NotNull java.lang.String getContentType()
The content-type of the serialized value (e.g. application/json, application/json;gzip etc.)- Returns:
- contentType
-
setContentType
public void setContentType(java.lang.String contentType)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-