io.quarkus.kafka.client.runtime.devui.model.response.KafkaAclEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-kafka-client Show documentation
Show all versions of quarkus-kafka-client Show documentation
Connect to Apache Kafka with its native API
package io.quarkus.kafka.client.runtime.devui.model.response;
public class KafkaAclEntry {
private String operation;
private String principal;
private String perm;
private String pattern;
public KafkaAclEntry() {
}
public KafkaAclEntry(String operation, String principal, String perm, String pattern) {
this.operation = operation;
this.principal = principal;
this.perm = perm;
this.pattern = pattern;
}
public String getOperation() {
return operation;
}
public String getPrincipal() {
return principal;
}
public String getPerm() {
return perm;
}
public String getPattern() {
return pattern;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy