necouchman commented on code in PR #902: URL: https://github.com/apache/guacamole-client/pull/902#discussion_r1759273186
########## extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/permission/UserPermissionMapper.java: ########## @@ -19,7 +19,141 @@ package org.apache.guacamole.auth.jdbc.permission; +import java.util.Collection; +import org.apache.guacamole.auth.jdbc.base.EntityModel; +import org.apache.guacamole.net.auth.permission.ObjectPermission; +import org.apache.ibatis.annotations.Param; + /** * Mapper for user permissions. */ -public interface UserPermissionMapper extends ObjectPermissionMapper {} +public interface UserPermissionMapper extends ObjectPermissionMapper { + + /** + * Deletes the given permissions from the database. If any permissions do + * not exist, they will be ignored. + * + * @param permissions + * The permissions to delete. + * + * @param caseSensitive + * Whether or not string comparisons will be done in a case-sensitive Review Comment: Yep. -- 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: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org