Package io.openlineage.server
Interface OpenLineage.BaseEvent
-
- All Known Implementing Classes:
OpenLineage.DatasetEvent,OpenLineage.JobEvent,OpenLineage.RunEvent
- Enclosing class:
- OpenLineage
public static interface OpenLineage.BaseEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>getAdditionalProperties()java.time.ZonedDateTimegetEventTime()java.net.URIgetProducer()java.net.URIgetSchemaURL()
-
-
-
Method Detail
-
getEventTime
java.time.ZonedDateTime getEventTime()
- Returns:
- the time the event occurred at
-
getProducer
java.net.URI getProducer()
- Returns:
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
getSchemaURL
java.net.URI getSchemaURL()
- Returns:
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
getAdditionalProperties
java.util.Map<java.lang.String,java.lang.Object> getAdditionalProperties()
- Returns:
- additional properties
-
-