Class Action
java.lang.Object
org.apache.kafka.server.authorizer.Action
-
Constructor Summary
ConstructorDescriptionAction
(AclOperation operation, ResourcePattern resourcePattern, int resourceReferenceCount, boolean logIfAllowed, boolean logIfDenied) -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
hashCode()
boolean
Indicates if audit logs tracking ALLOWED access should include this action if result is ALLOWED.boolean
Indicates if audit logs tracking DENIED access should include this action if result is DENIED.int
Number of times the resource being authorized is referenced within the request.toString()
-
Constructor Details
-
Action
public Action(AclOperation operation, ResourcePattern resourcePattern, int resourceReferenceCount, boolean logIfAllowed, boolean logIfDenied) - Parameters:
operation
- non-null operation being performedresourcePattern
- non-null resource pattern on which this action is being performed
-
-
Method Details
-
resourcePattern
- Returns:
- a non-null resource pattern on which this action is being performed
-
operation
- Returns:
- a non-null operation being performed
-
logIfAllowed
public boolean logIfAllowed()Indicates if audit logs tracking ALLOWED access should include this action if result is ALLOWED. The flag is true if access to a resource is granted while processing the request as a result of this authorization. The flag is false only for requests used to describe access where no operation on the resource is actually performed based on the authorization result. -
logIfDenied
public boolean logIfDenied()Indicates if audit logs tracking DENIED access should include this action if result is DENIED. The flag is true if access to a resource was explicitly requested and request is denied as a result of this authorization request. The flag is false if request was filtering out authorized resources (e.g. to subscribe to regex pattern). The flag is also false if this is an optional authorization where an alternative resource authorization is applied if this fails (e.g. Cluster:Create which is subsequently overridden by Topic:Create). -
resourceReferenceCount
public int resourceReferenceCount()Number of times the resource being authorized is referenced within the request. For example, a single request may reference `n` topic partitions of the same topic. Brokers will authorize the topic once with `resourceReferenceCount=n`. Authorizers may include the count in audit logs. -
equals
-
hashCode
public int hashCode() -
toString
-