Class DeleteAclsResult

java.lang.Object
org.apache.kafka.clients.admin.DeleteAclsResult

@Evolving public class DeleteAclsResult extends Object
The result of the Admin.deleteAcls(Collection) call. The API of this class is evolving, see Admin for details.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    A class containing either the deleted ACL binding or an exception if the delete failed.
    static class 
    A class containing the results of the delete ACLs operation.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.kafka.common.KafkaFuture<Collection<org.apache.kafka.common.acl.AclBinding>>
    all()
    Return a future which succeeds only if all the ACLs deletions succeed, and which contains all the deleted ACLs.
    Map<org.apache.kafka.common.acl.AclBindingFilter,org.apache.kafka.common.KafkaFuture<DeleteAclsResult.FilterResults>>
    Return a map from acl filters to futures which can be used to check the status of the deletions by each filter.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • values

      public Map<org.apache.kafka.common.acl.AclBindingFilter,org.apache.kafka.common.KafkaFuture<DeleteAclsResult.FilterResults>> values()
      Return a map from acl filters to futures which can be used to check the status of the deletions by each filter.
    • all

      public org.apache.kafka.common.KafkaFuture<Collection<org.apache.kafka.common.acl.AclBinding>> all()
      Return a future which succeeds only if all the ACLs deletions succeed, and which contains all the deleted ACLs. Note that it if the filters don't match any ACLs, this is not considered an error.