io.openlineage.client.OpenLineageYaml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlineage-java Show documentation
Show all versions of openlineage-java Show documentation
Java library for OpenLineage
/*
/* Copyright 2018-2023 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/
package io.openlineage.client;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.openlineage.client.transports.FacetsConfig;
import io.openlineage.client.transports.TransportConfig;
import lombok.Getter;
/** Configuration for {@link OpenLineageClient}. */
public class OpenLineageYaml {
@Getter
@JsonProperty("transport")
private TransportConfig transportConfig;
@Getter
@JsonProperty("facets")
private FacetsConfig facetsConfig;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy