*
* @return the user repository
* @throws Exception
*/
protected UsersRepository getUsersRepository() throws Exception {
ListUsersJdbcRepository res = new ListUsersJdbcRepository();
String tableString = "listusers";
configureAbstractJdbcUsersRepository(res, tableString);
return res;
}