java.lang.Object
org.odpi.openmetadata.integrationservices.lineage.properties.OpenLineageRun

public class OpenLineageRun extends Object
This class represents the content of an open lineage run event as defined in JSON spec https://github.com/OpenLineage/OpenLineage/blob/main/spec/OpenLineage.json. It is used internally in Egeria to pass this information to the Lineage Integrator OMIS's integration connectors.
  • Constructor Details

    • OpenLineageRun

      public OpenLineageRun()
      Default constructor
  • Method Details

    • getRunId

      public UUID getRunId()
      Return the unique identifier of the job run.
      Returns:
      uuid
    • setRunId

      public void setRunId(UUID runId)
      Set up the unique identifier of the job run.
      Parameters:
      runId - UUID value
    • getFacets

      public OpenLineageRunFacets getFacets()
      Return the map of facets describing the run of the job.
      Returns:
      run facets object
    • setFacets

      public void setFacets(OpenLineageRunFacets facets)
      Set up the map of facets describing the run of the job.
      Parameters:
      facets - run facets object
    • getAdditionalProperties

      public Map<String,Object> getAdditionalProperties()
      Return a map of additional custom facets. The name is the identifier of the facet type and the object is the facet itself.
      Returns:
      custom facet map (map from string to object)
    • setAdditionalProperties

      public void setAdditionalProperties(Map<String,Object> additionalProperties)
      Set up a map of additional custom facets. The name is the identifier of the facet type and the object is the facet itself.
      Parameters:
      additionalProperties - custom facet map (map from string to object)
    • toString

      public String toString()
      Standard toString method.
      Overrides:
      toString in class Object
      Returns:
      print out of variables in a JSON-style
    • equals

      public boolean equals(Object objectToCompare)
      Compare the values of the supplied object with those stored in the current object.
      Overrides:
      equals in class Object
      Parameters:
      objectToCompare - supplied object
      Returns:
      boolean result of comparison
    • hashCode

      public int hashCode()
      Return hash code based on properties.
      Overrides:
      hashCode in class Object
      Returns:
      int