Interface UpdateJobSuspensionStateSelectBuilder
-
- All Known Implementing Classes:
UpdateJobSuspensionStateBuilderImpl
public interface UpdateJobSuspensionStateSelectBuilderFluent builder to update the suspension state of jobs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateJobSuspensionStateBuilderbyJobDefinitionId(String jobDefinitionId)Selects the jobs of the job definition with the given id.UpdateJobSuspensionStateBuilderbyJobId(String jobId)Selects the job with the given id.UpdateJobSuspensionStateBuilderbyProcessDefinitionId(String processDefinitionId)Selects the jobs of the process definition with the given id.UpdateJobSuspensionStateTenantBuilderbyProcessDefinitionKey(String processDefinitionKey)Selects the jobs of the process definitions with the given key.UpdateJobSuspensionStateBuilderbyProcessInstanceId(String processInstanceId)Selects the jobs of the process instance with the given id.
-
-
-
Method Detail
-
byJobId
UpdateJobSuspensionStateBuilder byJobId(String jobId)
Selects the job with the given id.- Parameters:
jobId- id of the job- Returns:
- the builder
-
byJobDefinitionId
UpdateJobSuspensionStateBuilder byJobDefinitionId(String jobDefinitionId)
Selects the jobs of the job definition with the given id.- Parameters:
jobDefinitionId- id of the job definition- Returns:
- the builder
-
byProcessInstanceId
UpdateJobSuspensionStateBuilder byProcessInstanceId(String processInstanceId)
Selects the jobs of the process instance with the given id.- Parameters:
processInstanceId- id of the process instance- Returns:
- the builder
-
byProcessDefinitionId
UpdateJobSuspensionStateBuilder byProcessDefinitionId(String processDefinitionId)
Selects the jobs of the process definition with the given id.- Parameters:
processDefinitionId- id of the process definition- Returns:
- the builder
-
byProcessDefinitionKey
UpdateJobSuspensionStateTenantBuilder byProcessDefinitionKey(String processDefinitionKey)
Selects the jobs of the process definitions with the given key.- Parameters:
processDefinitionKey- key of the process definition- Returns:
- the builder
-
-