Package at.fhj.itm.util

Examples of at.fhj.itm.util.EmailUtilImpl


     
      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


  }

  @Override
  public EmailUtil createEmailUtil() {
    if (this.mailUtil == null)
      this.mailUtil = new EmailUtilImpl();

    return this.mailUtil;
  }
View Full Code Here

TOP

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

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.