Package org.apache.kafka.server.quota
Interface ClientQuotaEntity
public interface ClientQuotaEntity
The metadata for an entity for which quota is configured. Quotas may be defined at
different levels and `configEntities` gives the list of config entities that define
the level of this quota entity.
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ClientQuotaEntity.ConfigEntity
Interface representing a quota configuration entity.static class
ClientQuotaEntity.ConfigEntityType
Entity type of aClientQuotaEntity.ConfigEntity
-
Method Summary
Modifier and Type Method Description List<ClientQuotaEntity.ConfigEntity>
configEntities()
Returns the list of configuration entities that this quota entity is comprised of.
-
Method Details
-
configEntities
List<ClientQuotaEntity.ConfigEntity> configEntities()Returns the list of configuration entities that this quota entity is comprised of. For {user} or {clientId} quota, this is a single entity and for {user, clientId} quota, this is a list of two entities.
-