Abyss-lord commented on code in PR #6746: URL: https://github.com/apache/gravitino/pull/6746#discussion_r2017781836
########## core/src/main/java/org/apache/gravitino/listener/api/info/UserInfo.java: ########## @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.gravitino.listener.api.info; + +import java.util.List; +import java.util.Optional; +import org.apache.gravitino.authorization.User; + +/** Provides read-only access to user information for event listeners. */ +public class UserInfo { + private final String name; + private Optional<List<String>> roles; + + /** + * Construct a new {@link UserInfo} instance with the given {@link User} information. + * + * @param user the {@link User} instance. + */ + public UserInfo(User user) { + this.name = user.name(); + this.roles = Optional.ofNullable(user.roles()); + } + + /** + * Construct a new {@link UserInfo} instance with the given name and no roles. the roles will be + * set to {@code Optional.empty()}. + * + * @param name the name of the user. + */ + public UserInfo(String name) { Review Comment: @FANNG1 In `RemoveUserEvent` class, we need name to constructs a new instance. -- 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: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org