lasdf1234 commented on code in PR #11140:
URL: https://github.com/apache/gravitino/pull/11140#discussion_r3263530041


##########
plugins/idp-basic/src/main/java/org/apache/gravitino/idp/storage/mapper/IdpGroupUserRelMapper.java:
##########
@@ -0,0 +1,81 @@
+/*
+ * 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.idp.storage.mapper;
+
+import java.util.List;
+import org.apache.gravitino.idp.storage.po.IdpGroupUserRelPO;
+import org.apache.ibatis.annotations.DeleteProvider;
+import org.apache.ibatis.annotations.InsertProvider;
+import org.apache.ibatis.annotations.Param;
+import org.apache.ibatis.annotations.SelectProvider;
+import org.apache.ibatis.annotations.UpdateProvider;
+
+/**
+ * A MyBatis mapper for built-in IdP group-user relation operations.
+ *
+ * <p>This interface defines the SQL statements MyBatis executes for the 
built-in IdP group-user
+ * relation store. The SQLs are provided through {@code *Provider} annotations 
on this mapper
+ * interface. See the <a 
href="https://mybatis.org/mybatis-3/getting-started.html";>MyBatis getting
+ * started guide</a>.
+ */
+public interface IdpGroupUserRelMapper {
+  String IDP_GROUP_USER_REL_TABLE_NAME = "idp_group_user_rel";
+
+  @SelectProvider(
+      type = IdpGroupUserRelSQLProviderFactory.class,
+      method = "selectGroupNamesByUserId")
+  List<String> selectGroupNamesByUserId(@Param("userId") Long userId);
+
+  @SelectProvider(
+      type = IdpGroupUserRelSQLProviderFactory.class,
+      method = "selectUserNamesByGroupId")
+  List<String> selectUserNamesByGroupId(@Param("groupId") Long groupId);
+
+  @SelectProvider(type = IdpGroupUserRelSQLProviderFactory.class, method = 
"selectRelatedUserIds")
+  List<Long> selectRelatedUserIds(
+      @Param("groupId") Long groupId, @Param("userIds") List<Long> userIds);
+
+  @InsertProvider(
+      type = IdpGroupUserRelSQLProviderFactory.class,
+      method = "batchInsertIdpGroupUsers")
+  void batchInsertIdpGroupUsers(@Param("relations") List<IdpGroupUserRelPO> 
relations);
+
+  @UpdateProvider(
+      type = IdpGroupUserRelSQLProviderFactory.class,
+      method = "softDeleteIdpGroupUsers")
+  void softDeleteIdpGroupUsers(
+      @Param("groupId") Long groupId, @Param("userIds") List<Long> userIds);
+
+  @UpdateProvider(
+      type = IdpGroupUserRelSQLProviderFactory.class,
+      method = "softDeleteGroupUsersByUserId")
+  void softDeleteGroupUsersByUserId(@Param("userId") Long userId);
+
+  @UpdateProvider(
+      type = IdpGroupUserRelSQLProviderFactory.class,
+      method = "softDeleteGroupUsersByGroupId")
+  void softDeleteGroupUsersByGroupId(@Param("groupId") Long groupId);

Review Comment:
   Resolved



-- 
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]

Reply via email to