collado-mike commented on code in PR #1353: URL: https://github.com/apache/polaris/pull/1353#discussion_r2070630659
########## polaris-core/src/main/java/org/apache/polaris/core/entity/PrincipalEntity.java: ########## @@ -78,6 +95,13 @@ public Builder setCredentialRotationRequiredState() { return this; } + public Builder setFederated(Boolean isFederated) { + if (isFederated != null && isFederated) { + internalProperties.put(FederatedEntities.FEDERATED_ENTITY, "true"); + } + return this; + } Review Comment: I'll update this to be the same as the other -- 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