Uses of Class
com.avoka.fc.core.entity.JobStep
-
Packages that use JobStep 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.job Provides Quartz job implementation classes.com.avoka.fc.core.service.insights Provides the Insighs integration services.com.avoka.fc.core.service.job.impl Provides Collaboration Jobs service classes.com.avoka.tm.vo Provides Value Object persistent entity classes. -
-
Uses of JobStep in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return JobStep Modifier and Type Method Description JobStep
JobStepDao. getJobStepForID(Object id)
Return the job step for the given step primary key, or null if not foundJobStep
JobStepDao. getJobStepForName(Job job, String name)
Return the step of the specified job and step name, or null if not foundMethods in com.avoka.fc.core.dao that return types with arguments of type JobStep Modifier and Type Method Description List<JobStep>
JobStepDao. getStepsForJob(Object jobId)
Return the list of steps for the job with the given ID, sorted by creation time in ascending order. -
Uses of JobStep in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return types with arguments of type JobStep Modifier and Type Method Description List<JobStep>
Job. getOrderedJobSteps()
List<JobStep>
Job. getOrderedJobStepsDesc()
-
Uses of JobStep in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type JobStep Modifier and Type Field Description static org.apache.cayenne.exp.Property<JobStep>
_JobAction. CURRENT_ACTION_STEP
Provides the 'CURRENT_ACTION_STEP' property.static org.apache.cayenne.exp.Property<JobStep>
_Job. CURRENT_STEP
Provides the 'CURRENT_STEP' property.static org.apache.cayenne.exp.Property<List<JobStep>>
_ServiceDefinition. EXPIRY_JOB_STEPS
Provides the 'EXPIRY_JOB_STEPS' property.static org.apache.cayenne.exp.Property<JobStep>
_JobAction. JOB_STEP
Provides the 'JOB_STEP' property.static org.apache.cayenne.exp.Property<List<JobStep>>
_Job. JOB_STEPS
Provides the 'JOB_STEPS' property.Methods in com.avoka.fc.core.entity.auto that return JobStep Modifier and Type Method Description JobStep
_JobAction. getCurrentActionStep()
Return the CurrentActionStep.JobStep
_Job. getCurrentStep()
Return the CurrentStep.JobStep
_JobAction. getJobStep()
Return the JobStep.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type JobStep Modifier and Type Method Description List<JobStep>
_ServiceDefinition. getExpiryJobSteps()
Return the ExpiryJobSteps.List<JobStep>
_Job. getJobSteps()
Return the JobSteps.Methods in com.avoka.fc.core.entity.auto with parameters of type JobStep Modifier and Type Method Description void
_ServiceDefinition. addToExpiryJobSteps(JobStep obj)
Add the ExpiryJobSteps object.void
_Job. addToJobSteps(JobStep obj)
Add the JobSteps object.void
_ServiceDefinition. removeFromExpiryJobSteps(JobStep obj)
Remove the ExpiryJobSteps object.void
_Job. removeFromJobSteps(JobStep obj)
Remove the JobSteps object.void
_JobAction. setCurrentActionStep(JobStep currentActionStep)
Set the CurrentActionStep.void
_Job. setCurrentStep(JobStep currentStep)
Set the CurrentStep.void
_JobAction. setJobStep(JobStep jobStep)
Set the JobStep. -
Uses of JobStep in com.avoka.fc.core.job
Methods in com.avoka.fc.core.job with parameters of type JobStep Modifier and Type Method Description void
JobStatusLifecycleListener. updateJobStep(JobStep jobStep)
Handle a job step update -
Uses of JobStep in com.avoka.fc.core.service.insights
Methods in com.avoka.fc.core.service.insights with parameters of type JobStep Modifier and Type Method Description static boolean
InsightsJobs. publishStatus(JobStep jobStep)
Convenience method for sending the current status of a JobStep to InsightsInsightsEventPublisher
InsightsEventPublisher. setJobStep(JobStep jobStep)
Set the Insights job step to publish -
Uses of JobStep in com.avoka.fc.core.service.job.impl
Methods in com.avoka.fc.core.service.job.impl that return JobStep Modifier and Type Method Description static JobStep
JobActionUtils. getFirstStep(Job job, String stepName)
Gets the earliest step instance for the specified step name working forwards from earliest to latest steps.static JobStep
JobActionUtils. getLastStep(Job job, String stepName)
Gets the latest step instance for the specified step name working backwards from latest to earliest steps.static JobStep
JobActionUtils. getPreviousStep(Job job)
Return the previous step relative to the job's current step, or null if current step is first step.Methods in com.avoka.fc.core.service.job.impl with parameters of type JobStep Modifier and Type Method Description static List<Submission>
JobActionUtils. getCompletedSubmissionsForStep(JobStep step)
Returns a List of completed submissions for the step, in id order, for the given job step or and empty Liststatic List<Submission>
JobActionUtils. getSubmissionsForStep(JobStep step)
Returns a List of submissions, in action order, for the given job step or and empty ListConstructors in com.avoka.fc.core.service.job.impl with parameters of type JobStep Constructor Description JobTaskAssignActionBuilder(JobStep jobStep)
Construct a JobTaskAssignActionBuilder -
Uses of JobStep in com.avoka.tm.vo
Constructors in com.avoka.tm.vo with parameters of type JobStep Constructor Description JobStep(JobStep jobStep)
Create a Job Step value object with the given job step entity parameter.
-