Uses of Class
com.avoka.fc.core.entity.EventLog
-
Packages that use EventLog Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.sysevent -
-
Uses of EventLog in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return types with arguments of type EventLog Modifier and Type Method Description List<EventLog>
EventLogDao. getEventLogList(Long clientId, String eventId, String type, String messageFilter, String message, String submissionId, String submissionFilter, Date startDate, Date endDate, String sortBy, boolean ascending, int pageSize, int fetchLimit)
Return a list of event log records matching the specified search criteria.List<EventLog>
EventLogDao. getEventLogList(String eventId, String type, String messageFilter, String message, String submissionId, String submissionFilter, Date startDate, Date endDate, String sortBy, boolean ascending, int pageSize, int fetchLimit)
Return a list of event log records matching the specified search criteria.List<EventLog>
EventLogDao. getEventLogList(String eventId, String type, String messageFilter, String message, String submissionId, Date startDate, Date endDate, String sortBy, boolean ascending, int pageSize)
Return a list of event log records matching the specified search criteria.List<EventLog>
EventLogDao. getSubmissionEvents(Object submissionId)
Return the list of event log entries associated with a submission (note: the query uses the generic fetch limit and is thus used in lieu of submission.getEvents() for performance reasons) -
Uses of EventLog in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type EventLog Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<EventLog>>
_EmailQueue. EVENT_LOG
Provides the 'EVENT_LOG' property.static org.apache.cayenne.exp.Property<List<EventLog>>
_ServerNode. EVENT_LOG
Provides the 'EVENT_LOG' property.static org.apache.cayenne.exp.Property<List<EventLog>>
_Submission. EVENT_LOG
Provides the 'EVENT_LOG' property.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type EventLog Modifier and Type Method Description List<EventLog>
_EmailQueue. getEventLog()
Return the EventLog.List<EventLog>
_ServerNode. getEventLog()
Return the EventLog.List<EventLog>
_Submission. getEventLog()
Return the EventLog.Methods in com.avoka.fc.core.entity.auto with parameters of type EventLog Modifier and Type Method Description void
_EmailQueue. addToEventLog(EventLog obj)
Add the EventLog object.void
_ServerNode. addToEventLog(EventLog obj)
Add the EventLog object.void
_Submission. addToEventLog(EventLog obj)
Add the EventLog object.void
_EmailQueue. removeFromEventLog(EventLog obj)
Remove the EventLog object.void
_ServerNode. removeFromEventLog(EventLog obj)
Remove the EventLog object.void
_Submission. removeFromEventLog(EventLog obj)
Remove the EventLog object. -
Uses of EventLog in com.avoka.fc.core.sysevent
Methods in com.avoka.fc.core.sysevent with parameters of type EventLog Modifier and Type Method Description void
SysEventBuilder.ISysEventBuilder. addEventLog(EventLog el)
Registers the Event Log for inclusion in the system event messages.
-