| |
|
| com.pentaho.security.jdbc.JdbcUserRoleListService
Inner Class :protected class AllUserNamesMapping extends MappingSqlQuery | |
Inner Class :protected class AllUserNamesInRoleMapping extends MappingSqlQuery | |
Inner Class :protected class AllAuthoritiesMapping extends MappingSqlQuery | |
DEF_ALL_AUTHORITIES_QUERY | final public static String DEF_ALL_AUTHORITIES_QUERY(Code) | | |
DEF_ALL_USERNAMES_IN_ROLE_QUERY | final public static String DEF_ALL_USERNAMES_IN_ROLE_QUERY(Code) | | |
DEF_ALL_USERNAMES_QUERY | final public static String DEF_ALL_USERNAMES_QUERY(Code) | | |
allAuthoritiesMapping | protected MappingSqlQuery allAuthoritiesMapping(Code) | | |
allUsernamesInRoleMapping | protected MappingSqlQuery allUsernamesInRoleMapping(Code) | | |
allUsernamesMapping | protected MappingSqlQuery allUsernamesMapping(Code) | | |
JdbcUserRoleListService | public JdbcUserRoleListService(UserDetailsService userDetailsService)(Code) | | |
getAllAuthorities | public GrantedAuthority[] getAllAuthorities() throws DataAccessException(Code) | | |
getAllAuthoritiesQuery | public String getAllAuthoritiesQuery()(Code) | | |
getAllUsernames | public String[] getAllUsernames() throws DataAccessException(Code) | | |
getAllUsernamesInRoleQuery | public String getAllUsernamesInRoleQuery()(Code) | | |
getAllUsernamesQuery | public String getAllUsernamesQuery()(Code) | | |
getAuthoritiesForUser | public GrantedAuthority[] getAuthoritiesForUser(String userName) throws UsernameNotFoundException, DataAccessException(Code) | | |
getUsernamesInRole | public String[] getUsernamesInRole(GrantedAuthority authority)(Code) | | |
initDao | protected void initDao() throws ApplicationContextException(Code) | | |
initMappingSqlQueries | protected void initMappingSqlQueries()(Code) | | Extension point to allow other MappingSqlQuery objects to be substituted
in a subclass
|
setAllAuthoritiesQuery | public void setAllAuthoritiesQuery(String queryString)(Code) | | Allows the default query string used to retrieve all authorities to be
overriden, if default table or column names need to be changed. The
default query is
JdbcUserRoleListService.DEF_ALL_AUTHORITIES_QUERY ; when modifying this
query, ensure that all returned columns are mapped back to the same
column names as in the default query.
Parameters: queryString - The query string to set |
setAllUsernamesInRoleQuery | public void setAllUsernamesInRoleQuery(String queryString)(Code) | | Allows the default query string used to retrieve all user names in a role
to be overriden, if default table or column names need to be changed. The
default query is
JdbcUserRoleListService.DEF_ALL_USERS_QUERY ; when modifying this
query, ensure that all returned columns are mapped back to the same
column names as in the default query.
Parameters: queryString - The query string to set |
setAllUsernamesQuery | public void setAllUsernamesQuery(String queryString)(Code) | | Allows the default query string used to retrieve all user names to be
overriden, if default table or column names need to be changed. The
default query is
JdbcUserRoleListService.DEF_ALL_USERS_IN_ROLE_QUERY ; when modifying
this query, ensure that all returned columns are mapped back to the same
column names as in the default query.
Parameters: queryString - The query string to set |
setRolePrefix | public void setRolePrefix(String rolePrefix)(Code) | | |
setUserDetailsService | public void setUserDetailsService(UserDetailsService userDetailsService)(Code) | | |
|
|
|