lasdf1234 commented on code in PR #10503:
URL: https://github.com/apache/gravitino/pull/10503#discussion_r2972730382
##########
core/src/main/java/org/apache/gravitino/UserPrincipal.java:
##########
@@ -21,20 +21,39 @@
import com.google.common.base.Preconditions;
import java.security.Principal;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+import java.util.Objects;
/** A simple implementation of Principal that holds a username. */
public class UserPrincipal implements Principal {
private final String username;
+ private final List<String> groups;
Review Comment:
Got it, I have resolved it.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]