Package hirondelle.fish.main.visit

Examples of hirondelle.fish.main.visit.Visit


   associated {@link Rsvp} responses. 
  */
  public ResponsePage execute() throws AppException {
    VisitDAO dao = new VisitDAO();
    //might not be any future visit (possibly-null)
    Visit nextVisit = dao.fetchNextFutureVisit();
    addToRequest(NEXT_VISIT, nextVisit);

    if ( nextVisit != null ) {
      RsvpDAO rsvpDAO = new RsvpDAO();
      addToRequest(ITEMS_FOR_LISTING, rsvpDAO.list(nextVisit.getId()));
      addToRequest(NUM_YES_RESPONSES, rsvpDAO.countNumYes(nextVisit.getId()) );
    }
    return getResponsePage();
  }
View Full Code Here

TOP

Related Classes of hirondelle.fish.main.visit.Visit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.