Class Action
java.lang.Object
org.apache.kafka.server.authorizer.Action
- 
Constructor SummaryConstructorsConstructorDescriptionAction(AclOperation operation, ResourcePattern resourcePattern, int resourceReferenceCount, boolean logIfAllowed, boolean logIfDenied) 
- 
Method SummaryModifier and TypeMethodDescriptionbooleaninthashCode()booleanIndicates if audit logs tracking ALLOWED access should include this action if result is ALLOWED.booleanIndicates if audit logs tracking DENIED access should include this action if result is DENIED.intNumber of times the resource being authorized is referenced within the request.toString()
- 
Constructor Details- 
Actionpublic Action(AclOperation operation, ResourcePattern resourcePattern, int resourceReferenceCount, boolean logIfAllowed, boolean logIfDenied) - Parameters:
- operation- non-null operation being performed
- resourcePattern- 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
 
- 
logIfAllowedpublic 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.
- 
logIfDeniedpublic 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).
- 
resourceReferenceCountpublic 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
- 
hashCodepublic int hashCode()
- 
toString
 
-