Uses of Class
com.avoka.fc.core.entity.JobEventLog
-
Packages that use JobEventLog 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. -
-
Uses of JobEventLog in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return types with arguments of type JobEventLog Modifier and Type Method Description List<JobEventLog>
JobEventLogDao. getEventsForJob(Object jobId)
Return the list of events for the job with the given ID, sorted by creation time in ascending order.List<JobEventLog>
JobEventLogDao. getEventsForJobAction(Object jobActionId)
Return the list of events for the job action with the given ID, sorted by creation time in ascending order. -
Uses of JobEventLog in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type JobEventLog Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<JobEventLog>>
_Job. JOB_EVENTS
Provides the 'JOB_EVENTS' property.static org.apache.cayenne.exp.Property<List<JobEventLog>>
_JobAction. JOB_EVENTS
Provides the 'JOB_EVENTS' property.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type JobEventLog Modifier and Type Method Description List<JobEventLog>
_Job. getJobEvents()
Return the JobEvents.List<JobEventLog>
_JobAction. getJobEvents()
Return the JobEvents.Methods in com.avoka.fc.core.entity.auto with parameters of type JobEventLog Modifier and Type Method Description void
_Job. addToJobEvents(JobEventLog obj)
Add the JobEvents object.void
_JobAction. addToJobEvents(JobEventLog obj)
Add the JobEvents object.void
_Job. removeFromJobEvents(JobEventLog obj)
Remove the JobEvents object.void
_JobAction. removeFromJobEvents(JobEventLog obj)
Remove the JobEvents object.
-