Skip to content

Commit

Permalink
Merge pull request #197 from bmhm/SHIRO-469
Browse files Browse the repository at this point in the history
[SHIRO-469] (doc) correct javadoc for JdbcRealm#setPermissionQuery.
  • Loading branch information
fpapon committed Jan 21, 2020
2 parents 4329f2a + b280f19 commit cb3a1b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/apache/shiro/realm/jdbc/JdbcRealm.java
Expand Up @@ -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)}</p>
* <p/>
Expand Down

0 comments on commit cb3a1b3

Please sign in to comment.