Class ClassicGroupDescription

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

public class ClassicGroupDescription extends Object
A detailed description of a single classic group in the cluster.
  • Constructor Details

  • Method Details

    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • groupId

      public String groupId()
      The id of the classic group.
    • protocol

      public String protocol()
      The group protocol type.
    • protocolData

      public String protocolData()
      The group protocol data. The meaning depends on the group protocol type. For a classic consumer group, this is the partition assignor name. For a classic connect group, this indicates which Connect protocols are enabled.
    • isSimpleConsumerGroup

      public boolean isSimpleConsumerGroup()
      If the group is a simple consumer group or not.
    • members

      public Collection<MemberDescription> members()
      A list of the members of the classic group.
    • state

      public ClassicGroupState state()
      The classic group state, or UNKNOWN if the state is too new for us to parse.
    • coordinator

      public Node coordinator()
      The classic group coordinator, or null if the coordinator is not known.
    • authorizedOperations

      public Set<AclOperation> authorizedOperations()
      authorizedOperations for this group, or null if that information is not known.
    • toString

      public String toString()
      Overrides:
      toString in class Object