throws EPAuthenticationException {
List<ListEntry> returnList = null;
try {
SpreadsheetService ssService = getSsService();
ListFeed listFeed = ssService.getFeed(ssUrl, ListFeed.class);
returnList = listFeed.getEntries();
} catch (com.google.gdata.util.AuthenticationException authEx) {
throw new EPAuthenticationException("SS read access not available");
} catch (com.google.gdata.util.ServiceException svcex) {
System.err.println("ServiceException while retrieving " +
"entry list: " + svcex.getMessage());