* any filtering you want to do, pass null to get all entries
* @return
* an Iterator of entries which is lazily loaded
*/
public Iterator<Entry> getUserEntries(String username, EntryCriteria criteria) {
return new UserStreamIterator(this, username, criteria);
}