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

io.quarkus.kafka.client.runtime.devui.model.response.KafkaAclEntry Maven / Gradle / Ivy

There is a newer version: 3.18.0.CR1
Show newest version
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