All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.openlineage.client.transports.HttpTransportBuilder Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
/*
/* Copyright 2018-2023 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/

package io.openlineage.client.transports;

public class HttpTransportBuilder implements TransportBuilder {

  @Override
  public TransportConfig getConfig() {
    return new HttpConfig();
  }

  @Override
  public Transport build(TransportConfig config) {
    return new HttpTransport((HttpConfig) config);
  }

  @Override
  public String getType() {
    return "http";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy