Package org.openmeetings.app.persistence.beans.calendar

Examples of org.openmeetings.app.persistence.beans.calendar.AppointmentReminderTyps


  }

  public Long deleteAppointmentReminderTyp(Long typId) {
    try {

      AppointmentReminderTyps ac = this
          .getAppointmentReminderTypById(typId);

      log.debug("ac: " + ac);

      if (ac == null) {
        log.debug("Already deleted / Could not find: " + typId);
        return typId;
      }
      ac.setUpdatetime(new Date());
      ac.setDeleted("true");

      if (ac.getTypId() == null) {
        em.persist(ac);
      } else {
        if (!em.contains(ac)) {
          em.merge(ac);
        }
View Full Code Here

TOP

Related Classes of org.openmeetings.app.persistence.beans.calendar.AppointmentReminderTyps

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.