Examples of VisitDAO


Examples of hirondelle.fish.main.visit.VisitDAO

   Show the home page, with info regarding the next future {@link Visit}, if any.
    
   <P> See {@link VisitDAO#fetchNextFutureVisit()}
  */
  public ResponsePage execute() throws AppException {
    VisitDAO dao = new VisitDAO();
    //might not be any future visit (possibly-null)
    addToRequest(NEXT_VISIT, dao.fetchNextFutureVisit());
    return getResponsePage();
  }
View Full Code Here

Examples of hirondelle.fish.main.visit.VisitDAO

  /**
   Fetch the next future {@link Visit} (if any), along with a listing of all
   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()));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.