Uses of Class
com.logicaldoc.calendar.Event
-
Packages that use Event Package Description com.logicaldoc.calendar com.logicaldoc.calendar.automation -
-
Uses of Event in com.logicaldoc.calendar
Methods in com.logicaldoc.calendar that return types with arguments of type Event Modifier and Type Method Description List<Event>
EventDAO. find(Date startDate, Date endDate, Date deadLineFrom, Date deadLineTo, Integer frequency, String title, String type, String subtype, Integer status, Long tenantId, Integer maxRecords)
Finder method for events.List<Event>
HibernateEventDAO. find(Date startDate, Date endDate, Date deadLineFrom, Date deadLineTo, Integer frequency, String title, String type, String subtype, Integer status, Long tenantId, Integer maxRecords)
List<Event>
EventDAO. findByParticipant(long participantId, Date startDate)
Retrieves the events associated to the given participantList<Event>
HibernateEventDAO. findByParticipant(long participantId, Date startDate)
List<Event>
EventDAO. findOccurrences(long masterId, Date start, Date end)
Retrieves the occurrences of a master eventList<Event>
HibernateEventDAO. findOccurrences(long masterId, Date begin, Date end)
Methods in com.logicaldoc.calendar with parameters of type Event Modifier and Type Method Description List<Long>
EventDAO. createOccurrences(Event master, Date start, Date end)
This will create all the occurrences of a recurrent master event in a given time range.
Attention: the collections are not propagated.List<Long>
HibernateEventDAO. createOccurrences(Event master, Date start, Date end)
void
HibernateEventDAO. initialize(Event event)
void
CalendarJob. notifyEvent(Event event, Reminder reminder)
Notifies an event by creating the system messages and emails.void
EventDAO. scheduleEvent(Event event)
Schedules the job for all the reminders.void
HibernateEventDAO. scheduleEvent(Event event)
boolean
HibernateEventDAO. store(Event event)
int
EventDAO. updateOccurrences(Event master)
This will update all existing occurrences with the master's properties.int
HibernateEventDAO. updateOccurrences(Event master)
-
Uses of Event in com.logicaldoc.calendar.automation
Methods in com.logicaldoc.calendar.automation that return Event Modifier and Type Method Description Event
CalendarTool. newEvent(long tenantId, String title, Date startDate, Collection<com.logicaldoc.core.security.User> participants, Collection<com.logicaldoc.core.document.Document> documents)
Creates a new calendar eventMethods in com.logicaldoc.calendar.automation with parameters of type Event Modifier and Type Method Description void
CalendarTool. save(Event event)
Stores into the database the given calendar envent
-