}
protected JdbcUserRoleListService makePopulatedJdbcUserRoleListService() throws Exception {
List<String> systemRoles = new ArrayList<String>();
systemRoles.add( "Admin" );
JdbcUserRoleListService dao = new JdbcUserRoleListService( makePopulatedJdbcDao(), systemRoles );
dao.setDataSource( PopulatedDatabase.getDataSource() );
return dao;
}