Uses of Class
com.avoka.fc.core.entity.JobAction
-
Packages that use JobAction Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity Provides the SmartForm Manager entity classes.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.service Provides the SmartForm Manager service classes.com.avoka.fc.core.service.fluent Provides the Fluent Groovy API services.com.avoka.fc.core.service.insights Provides the Insighs integration services.com.avoka.fc.core.service.job Provides Collaboration Jobs Service classes.com.avoka.fc.core.service.job.impl Provides Collaboration Jobs service classes.com.avoka.tm.vo Provides Value Object persistent entity classes. -
-
Uses of JobAction in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return JobAction Modifier and Type Method Description JobAction
JobActionDao. getJobActionForID(Object id)
Return the Job Action for the given action primary key, or null if not foundJobAction
JobActionDao. getJobActionForKey(String jobActionKey)
Return the Job Action for the specified job action key, or null if not found.Methods in com.avoka.fc.core.dao that return types with arguments of type JobAction Modifier and Type Method Description List<JobAction>
JobActionDao. getActionsForJobStep(Object jobStepId)
Return the list of actions for the job step with the given ID, sorted by action sequence and then action id. -
Uses of JobAction in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return types with arguments of type JobAction Modifier and Type Method Description Map<String,JobAction>
JobStep. getJobActionMap()
List<JobAction>
Job. getOrderedJobActions()
List<JobAction>
JobStep. getOrderedJobActions()
List<JobAction>
Job. getOrderedJobActionsDesc()
Methods in com.avoka.fc.core.entity with parameters of type JobAction Modifier and Type Method Description int
Job.StepActionsComparator. compare(JobAction a1, JobAction a2)
-
Uses of JobAction in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type JobAction Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<JobAction>>
_ServiceDefinition. ACTION_JOB_ACTIONS
Provides the 'ACTION_JOB_ACTIONS' property.static org.apache.cayenne.exp.Property<JobAction>
_JobStep. CURRENT_ACTION
Provides the 'CURRENT_ACTION' property.static org.apache.cayenne.exp.Property<JobAction>
_ErrorLog. JOB_ACTION
Provides the 'JOB_ACTION' property.static org.apache.cayenne.exp.Property<JobAction>
_JobEventLog. JOB_ACTION
Provides the 'JOB_ACTION' property.static org.apache.cayenne.exp.Property<JobAction>
_Submission. JOB_ACTION
Provides the 'JOB_ACTION' property.static org.apache.cayenne.exp.Property<List<JobAction>>
_Job. JOB_ACTIONS
Provides the 'JOB_ACTIONS' property.static org.apache.cayenne.exp.Property<List<JobAction>>
_JobStep. JOB_ACTIONS
Provides the 'JOB_ACTIONS' property.Methods in com.avoka.fc.core.entity.auto that return JobAction Modifier and Type Method Description JobAction
_JobStep. getCurrentAction()
Return the CurrentAction.JobAction
_ErrorLog. getJobAction()
Return the JobAction.JobAction
_JobEventLog. getJobAction()
Return the JobAction.JobAction
_Submission. getJobAction()
Return the JobAction.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type JobAction Modifier and Type Method Description List<JobAction>
_ServiceDefinition. getActionJobActions()
Return the ActionJobActions.List<JobAction>
_Job. getJobActions()
Return the JobActions.List<JobAction>
_JobStep. getJobActions()
Return the JobActions.Methods in com.avoka.fc.core.entity.auto with parameters of type JobAction Modifier and Type Method Description void
_ServiceDefinition. addToActionJobActions(JobAction obj)
Add the ActionJobActions object.void
_Job. addToJobActions(JobAction obj)
Add the JobActions object.void
_JobStep. addToJobActions(JobAction obj)
Add the JobActions object.void
_ServiceDefinition. removeFromActionJobActions(JobAction obj)
Remove the ActionJobActions object.void
_Job. removeFromJobActions(JobAction obj)
Remove the JobActions object.void
_JobStep. removeFromJobActions(JobAction obj)
Remove the JobActions object.void
_JobStep. setCurrentAction(JobAction currentAction)
Set the CurrentAction.void
_ErrorLog. setJobAction(JobAction jobAction)
Set the JobAction.void
_JobEventLog. setJobAction(JobAction jobAction)
Set the JobAction.void
_Submission. setJobAction(JobAction jobAction)
Set the JobAction. -
Uses of JobAction in com.avoka.fc.core.service
Fields in com.avoka.fc.core.service declared as JobAction Modifier and Type Field Description JobAction
SubmissionTaskService.FormTaskParam. jobAction
The associated Job action, to associate with this submission.JobAction
SubmissionTaskService.SavedFormParam. jobAction
The associated Job action, to associate with this submission.Methods in com.avoka.fc.core.service with parameters of type JobAction Modifier and Type Method Description ErrorLog
ErrorLogService. createErrorLog(org.apache.cayenne.access.DataContext dataContext, Throwable error, String userName, HttpServletRequest request, Submission submission, EmailQueue emailQueue, JobAction jobAction)
Create an error log entry for the given exception, logged in userName and requestUrl.ErrorLog
ErrorLogService. createErrorLog(org.apache.cayenne.access.DataContext dataContext, Throwable error, String userName, HttpServletRequest request, Submission submission, EmailQueue emailQueue, JobAction jobAction, boolean groovyError, String message)
Create an error log entry for the given exception, logged in userName and requestUrl.void
ErrorLogService. logJobActionError(Throwable error, JobAction jobAction, Submission submission)
Deprecated.void
ErrorLogService. logJobActionError(Throwable error, JobAction jobAction, Submission submission, boolean groovyError)
Log a JobAction exception to the error log.ErrorLoggerSvc
ErrorLoggerSvc. setJobAction(JobAction jobAction)
Set the job action to log. -
Uses of JobAction in com.avoka.fc.core.service.fluent
Methods in com.avoka.fc.core.service.fluent with parameters of type JobAction Modifier and Type Method Description protected ApplicationException
AbstractFluentService. createExceptionAndLog(Date startTime, com.jezhumble.javasysmon.CpuTimes startCpuTimes, Long startFreeMemory, Throwable cause, String context, String userMsg, String solution, JobAction jobAction, Submission submission, Form form, String functionTrigger)
Create application exception and optionally log ErrorLog and GroovyServiceLog records if Groovy Logging enabled. -
Uses of JobAction in com.avoka.fc.core.service.insights
Methods in com.avoka.fc.core.service.insights with parameters of type JobAction Modifier and Type Method Description static boolean
InsightsJobs. publishStatus(JobAction jobAction)
Convenience method for sending the current status of a JobAction b to InsightsInsightsEventPublisher
InsightsEventPublisher. setJobAction(JobAction jobAction)
Set the Insights job action to publish -
Uses of JobAction in com.avoka.fc.core.service.job
Methods in com.avoka.fc.core.service.job that return JobAction Modifier and Type Method Description JobAction
ActionContext. getJobAction()
Methods in com.avoka.fc.core.service.job with parameters of type JobAction Modifier and Type Method Description void
JobEventLogService. logErrorEventWithAction(String message, JobAction jobAction)
Log a job error event with the given message and job actionvoid
JobEventLogService. logInfoEventWithAction(String message, JobAction jobAction)
Log a job info event with the given message and job actionprotected void
JobEventLogService. logJobEvent(String type, String message, Job job, JobAction jobAction)
void
JobEventLogService. logWarnEventWithAction(String message, JobAction jobAction)
Log a job warn event with the given message and job actionConstructors in com.avoka.fc.core.service.job with parameters of type JobAction Constructor Description ActionContext(JobAction jobAction, JobDef jobDef, Map<String,String> jobControllerParameters, Map<String,String> jobProperties)
Create a Job ActionContext with the given Job Action, Job Def and Job Properties.ActionContext(JobAction jobAction, JobDef jobDef, Map<String,String> jobControllerParameters, Map<String,String> jobProperties, ActionDef actionDef)
Create a Job ActionContext with the given Job Action, Job Def and Job Properties. -
Uses of JobAction in com.avoka.fc.core.service.job.impl
Methods in com.avoka.fc.core.service.job.impl that return JobAction Modifier and Type Method Description JobAction
JobTaskAssignActionBuilder. execute()
Validates the inputs and builds the job actionMethods in com.avoka.fc.core.service.job.impl with parameters of type JobAction Modifier and Type Method Description static Object
JobFunctions. dispatch(String propertyName, String propertyValue, JobAction jobAction, Map<String,String> formDataMap, boolean evaluateTemplate)
Dispatch the function call and return the object result.static ActionResult
JobActionUtils. expireStepTasksAndActions(JobAction expiryJobAction, String expiryRouteName)
Called from an Job Expiry service this will expire the tasks and actions for a job.protected DeliveryDetails
JobDeliveryService. getDeliveryDetails(Submission submission, String deliveryDetailsName, JobAction jobAction)
Return the delivery details for the submission.static Map<String,String>
JobActionUtils. getFormDataMapPreviousStep(JobAction currentJobAction)
Returns the formDataMap for the previous JobStep submissionstatic Submission
JobActionUtils. getFormStartSubmission(JobAction currentJobAction)
Gets the original submission that started the Job's form start action.static UserAccount
JobActionUtils. getFormStartUser(JobAction currentJobAction)
Returns the user that made the original submission.static Submission
JobActionUtils. getPreviousSubmission(JobAction currentJobAction)
Gets the submission from the previous step action.Constructors in com.avoka.fc.core.service.job.impl with parameters of type JobAction Constructor Description JobFunctions(JobAction jobAction)
Create a JobFunctions object with the given jobAction.JobTaskAssignActionBuilder(JobAction jobAction)
Creates a JobTaskAssignActionBuilder from a related JobTaskAssign JobAction in the same JobStep This will use the sequence of the JobAction. -
Uses of JobAction in com.avoka.tm.vo
Constructors in com.avoka.tm.vo with parameters of type JobAction Constructor Description JobAction(JobAction jobAction)
Create a Job Action value object with the given job action entity parameter.
-