use of org.activiti.engine.impl.persistence.entity.TimerJobEntityImpl in project Activiti by Activiti.
the class JobExecutorTestCase method createTweetTimer.
protected TimerJobEntity createTweetTimer(String msg, Date duedate) {
TimerJobEntity timer = new TimerJobEntityImpl();
timer.setJobType(JobEntity.JOB_TYPE_TIMER);
timer.setJobHandlerType("tweet");
timer.setJobHandlerConfiguration(msg);
timer.setDuedate(duedate);
return timer;
}
Aggregations