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

com.purbon.kafka.topology.AccessControlProvider 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;

import com.purbon.kafka.topology.roles.TopologyAclBinding;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

public interface AccessControlProvider {

  void createBindings(Set bindings) throws IOException;

  void clearBindings(Set bindings) throws IOException;

  default Map> listAcls() {
    return new HashMap<>();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy