Class OpenLineageExecutionParametersRunFacetParameter

java.lang.Object
org.odpi.openmetadata.frameworks.integration.openlineage.OpenLineageExecutionParametersRunFacetParameter

public class OpenLineageExecutionParametersRunFacetParameter extends Object
This class represents a single parameter passed to the job at runtime. It is part of the OpenLineage spec.
  • Constructor Details

    • OpenLineageExecutionParametersRunFacetParameter

      public OpenLineageExecutionParametersRunFacetParameter()
      Default constructor
  • Method Details

    • getKey

      public String getKey()
      Return the unique identifier of the parameter.
      Returns:
      string
    • setKey

      public void setKey(String key)
      Set up the unique identifier of the parameter.
      Parameters:
      key - string
    • getName

      public String getName()
      Return the human-readable name of the parameter.
      Returns:
      string
    • setName

      public void setName(String name)
      Set up the human-readable name of the parameter.
      Parameters:
      name - string
    • getDescription

      public String getDescription()
      Return the human-readable description of the parameter.
      Returns:
      string
    • setDescription

      public void setDescription(String description)
      Set up the human-readable description of the parameter.
      Parameters:
      description - string
    • getValue

      public String getValue()
      Return the value of the parameter.
      Returns:
      string
    • setValue

      public void setValue(String value)
      Set up the value of the parameter.
      Parameters:
      value - string
    • 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