public enum AuthAction extends Enum<AuthAction>
| Enum Constant and Description |
|---|
consume
Permission to consume messages.
|
functions
Permissions for functions ops.
|
packages
Permissions for packages ops.
|
produce
Permission to produce/publish messages.
|
sinks
Permissions for sinks ops.
|
sources
Permissions for sources ops.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthAction produce
public static final AuthAction consume
public static final AuthAction functions
public static final AuthAction sources
public static final AuthAction sinks
public static final AuthAction packages
public static AuthAction[] values()
for (AuthAction c : AuthAction.values()) System.out.println(c);
public static AuthAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2021 Apache Software Foundation. All rights reserved.