@Override
protected List<EventEx> doExecute(PartakeConnection con, IPartakeDAOs daos) throws DAOException, PartakeException {
List<EventEx> events = new ArrayList<EventEx>();
for (String eventId : eventIds) {
EventEx event = EventDAOFacade.getEventEx(con, daos, eventId);
if (event != null)
events.add(event);
}
return events;