Package org.apache.kafka.server.quota
Interface ClientQuotaEntity.ConfigEntity
- 
- Enclosing interface:
 - ClientQuotaEntity
 
public static interface ClientQuotaEntity.ConfigEntityInterface representing a quota configuration entity. Quota may be configured at levels that include one or more configuration entities. For example, {user, client-id} quota is represented using two instances of ConfigEntity with entity types USER and CLIENT_ID. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClientQuotaEntity.ConfigEntityTypeentityType()Returns the type of this entity.Stringname()Returns the name of this entity. 
 - 
 
- 
- 
Method Detail
- 
name
String name()
Returns the name of this entity. For default quotas, an empty string is returned. 
- 
entityType
ClientQuotaEntity.ConfigEntityType entityType()
Returns the type of this entity. 
 - 
 
 -