Package at.fhj.itm.util

Examples of at.fhj.itm.util.EmailUtil


     
      List<Waypoint> lw = getTripService().getWaypointsForTrip(trip);
      getTripService().removeTrip(String.valueOf(trip.getId()));
      clearCache();
      tripsWaypoints = Collections.emptyList();
      EmailUtil email = new EmailUtilImpl();
      for (Waypoint w : lw) {
        email.sendTripDeleteNotification(w.getUser().getEmail(), w.getUser().getUsername());
      }
     
      try {
        jsfUtil.redirect("./deleteTripConfirmation.jsf");
      } catch (IOException e) {
View Full Code Here

TOP

Related Classes of at.fhj.itm.util.EmailUtil

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.