return null;
}
protected void scheduleSuspensionStateUpdate(CommandContext commandContext) {
TimerEntity timer = new TimerEntity();
timer.setDuedate(executionDate);
timer.setJobHandlerType(getDelayedExecutionJobHandlerType());
String jobConfiguration = null;
if (processDefinitionId != null) {
jobConfiguration = TimerChangeProcessDefinitionSuspensionStateJobHandler
.createJobHandlerConfigurationByProcessDefinitionId(processDefinitionId, includeProcessInstances);
} else
if (processDefinitionKey != null) {
jobConfiguration = TimerChangeProcessDefinitionSuspensionStateJobHandler
.createJobHandlerConfigurationByProcessDefinitionKey(processDefinitionKey, includeProcessInstances);
}
timer.setJobHandlerConfiguration(jobConfiguration);
commandContext.getJobManager().schedule(timer);
}