Package org.apache.openmeetings.db.entity.calendar

Examples of org.apache.openmeetings.db.entity.calendar.Appointment


          "first" + i + ".last" + i + "@webbase-design.de", "Etc/GMT+1");
    }
    Long language_id = 1L;
    Long roomType = 1L;

    Appointment a = appointmentLogic.getAppointment(appointmentName,
        appointmentLocation, appointmentDescription,
        start, end, isDaily, isWeekly,
        isMonthly, isYearly, categoryId, remind, mmClient,
        roomType, language_id, false, "", -1, users_id);
    a = appointmentDao.update(a, users_id);
   
    Thread.sleep(3000);
   
    appointmentLogic.doScheduledMeetingReminder();
   
    Thread.sleep(3000);
   
    assertTrue("Saved appointment should have valid id: " + a.getId(), a.getId() != null && a.getId() > 0);
  }
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.db.entity.calendar.Appointment

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.