Class OpenLineageInputDataSetInputFacets
- java.lang.Object
-
- org.odpi.openmetadata.integrationservices.lineage.properties.OpenLineageInputDataSetInputFacets
-
public class OpenLineageInputDataSetInputFacets extends Object
This class represents the map of input facets in the open lineage standard spec https://github.com/OpenLineage/OpenLineage/blob/main/spec/OpenLineage.json.
-
-
Constructor Summary
Constructors Constructor Description OpenLineageInputDataSetInputFacets()Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.Map<String,OpenLineageInputDataSetInputFacet>getAdditionalProperties()Return a map of additional input facets.OpenLineageDataQualityAssertionsInputDataSetFacetgetDataQualityAssertions()Return data quality assertions facet.OpenLineageDataQualityMetricsInputDataSetFacetgetDataQualityMetrics()Return the data quality metrics facet.inthashCode()Return has code based on properties.voidsetAdditionalProperties(Map<String,OpenLineageInputDataSetInputFacet> additionalProperties)Set up a map of additional input facets.voidsetDataQualityAssertions(OpenLineageDataQualityAssertionsInputDataSetFacet dataQualityAssertions)Set up the data quality assertions facet.voidsetDataQualityMetrics(OpenLineageDataQualityMetricsInputDataSetFacet dataQualityMetrics)Set up the data quality metrics facet.StringtoString()Standard toString method.
-
-
-
Method Detail
-
getDataQualityAssertions
public OpenLineageDataQualityAssertionsInputDataSetFacet getDataQualityAssertions()
Return data quality assertions facet.- Returns:
- facet
-
setDataQualityAssertions
public void setDataQualityAssertions(OpenLineageDataQualityAssertionsInputDataSetFacet dataQualityAssertions)
Set up the data quality assertions facet.- Parameters:
dataQualityAssertions- facet
-
getDataQualityMetrics
public OpenLineageDataQualityMetricsInputDataSetFacet getDataQualityMetrics()
Return the data quality metrics facet.- Returns:
- facet
-
setDataQualityMetrics
public void setDataQualityMetrics(OpenLineageDataQualityMetricsInputDataSetFacet dataQualityMetrics)
Set up the data quality metrics facet.- Parameters:
dataQualityMetrics- facet
-
getAdditionalProperties
public Map<String,OpenLineageInputDataSetInputFacet> getAdditionalProperties()
Return a map of additional input facets. The name is the identifier of the facet type and the object is the facet itself.- Returns:
- input facet map (map from string to object)
-
setAdditionalProperties
public void setAdditionalProperties(Map<String,OpenLineageInputDataSetInputFacet> additionalProperties)
Set up a map of additional input facets. The name is the identifier of the facet type and the object is the facet itself.- Parameters:
additionalProperties- input facet map (map from string to object)
-
toString
public String toString()
Standard toString method.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.
-
-