Пример #1
0
 public Collection<ElectionEvent> getUnfinishedElectionEvents() {
   try {
     return electionSessionBean.getUnfinishedElectionEvents(
         electionSessionBean.getElection(electionId));
   } catch (ControllerException ex) {
     Logger.getLogger(ElectionEventManagedBean.class.getName()).log(Level.SEVERE, null, ex);
     return null;
   }
 }