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

com.purbon.kafka.topology.api.mds.MDSRequest Maven / Gradle / Ivy

Go to download

A helper project for Kafka Platform teams to build an automated Topic, Configuration, Schemas, and more, Management solution.

The newest version!
package com.purbon.kafka.topology.api.mds;

public class MDSRequest {
  private final String url;
  private final String jsonEntity;

  public MDSRequest(String url, String jsonEntity) {
    this.url = url;
    this.jsonEntity = jsonEntity;
  }

  public String getUrl() {
    return url;
  }

  public String getJsonEntity() {
    return jsonEntity;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy