From b280f1914e8d952d92133fe659721ce6996faf50 Mon Sep 17 00:00:00 2001 From: Benjamin Marwell Date: Mon, 20 Jan 2020 20:06:37 +0100 Subject: [PATCH] [SHIRO-469] (doc) correct javadoc for JdbcRealm#setPermissionQuery. Signed-off-by: Benjamin Marwell --- core/src/main/java/org/apache/shiro/realm/jdbc/JdbcRealm.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/apache/shiro/realm/jdbc/JdbcRealm.java b/core/src/main/java/org/apache/shiro/realm/jdbc/JdbcRealm.java index fb54cdff56..37f8885882 100644 --- a/core/src/main/java/org/apache/shiro/realm/jdbc/JdbcRealm.java +++ b/core/src/main/java/org/apache/shiro/realm/jdbc/JdbcRealm.java @@ -165,8 +165,8 @@ public void setUserRolesQuery(String userRolesQuery) { /** * Overrides the default query used to retrieve a user's permissions during authorization. When using the default * implementation, this query must take a role name as the single parameter and return a row - * per permission with three columns containing the fully qualified name of the permission class, the permission - * name, and the permission actions (in that order). If you require a solution that does not match this query + * per permission with a single column, containing the permission. + * If you require a solution that does not match this query * structure, you can override {@link #doGetAuthorizationInfo(org.apache.shiro.subject.PrincipalCollection)} or just * {@link #getPermissions(java.sql.Connection,String,java.util.Collection)}

*