From 97d687c1ffa693b5635df5939e22c6d515286694 Mon Sep 17 00:00:00 2001 From: Varun Date: Tue, 19 Feb 2019 18:29:32 +0000 Subject: [PATCH] Update acl_types.go Co-Authored-By: Mongey --- acl_types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/acl_types.go b/acl_types.go index 9cc1b6605..2d1eac413 100644 --- a/acl_types.go +++ b/acl_types.go @@ -46,6 +46,12 @@ type AclResourcePatternType int // ref: https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/common/resource/PatternType.java const ( + AclPatternUnknown AclResourcePatternType = iota + AclPatternAny + AclPatternMatch + AclPatternLiteral + AclPatternPrefixed + ) AclPatternUnknown AclResourcePatternType = 0 AclPatternAny AclResourcePatternType = 1 AclPatternMatch AclResourcePatternType = 2