org.camunda.bpm.engine.management
Interface UpdateJobSuspensionStateSelectBuilder

All Known Implementing Classes:
UpdateJobSuspensionStateBuilderImpl

public interface UpdateJobSuspensionStateSelectBuilder

Fluent builder to update the suspension state of jobs.


Method Summary
 UpdateJobSuspensionStateBuilder byJobDefinitionId(String jobDefinitionId)
          Selects the jobs of the job definition with the given id.
 UpdateJobSuspensionStateBuilder byJobId(String jobId)
          Selects the job with the given id.
 UpdateJobSuspensionStateBuilder byProcessDefinitionId(String processDefinitionId)
          Selects the jobs of the process definition with the given id.
 UpdateJobSuspensionStateTenantBuilder byProcessDefinitionKey(String processDefinitionKey)
          Selects the jobs of the process definitions with the given key.
 UpdateJobSuspensionStateBuilder byProcessInstanceId(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


Copyright © 2017 camunda services GmbH. All rights reserved.