eric-maynard commented on code in PR #1353: URL: https://github.com/apache/polaris/pull/1353#discussion_r2045148978
########## polaris-core/src/main/java/org/apache/polaris/core/entity/PrincipalRoleEntity.java: ########## @@ -65,6 +65,13 @@ public Builder(PrincipalRoleEntity original) { super(original); } + public Builder setFederated(Boolean isFederated) { + if (isFederated != null && isFederated) { Review Comment: Why should it not be supported? It sounds like you're saying that `.setFederated(false)` is never a valid call, in which case `setFederated` shouldn't take a boolean arg. Perhaps you are even looking for something like `buildFederated`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org