Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KAFKA-14500; [2/N] Rewrite GroupMetadata in Java #13663

Merged
merged 15 commits into from
May 12, 2023
Prev Previous commit
Next Next commit
add protocol type getter
  • Loading branch information
jeffkbkim committed May 10, 2023
commit 6cde9b357d70aaacd52ce771800b39a7b1047a03
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,13 @@ public Optional<String> protocolName() {
return this.protocolName;
}

/**
* @return the protocol type.
*/
public Optional<String> protocolType() {
return this.protocolType;
}

/**
* @return the current group state.
*/
Expand Down