本文整理汇总了Java中org.activiti.engine.impl.persistence.entity.TaskEntity.createAndInsert方法的典型用法代码示例。如果您正苦于以下问题:Java TaskEntity.createAndInsert方法的具体用法?Java TaskEntity.createAndInsert怎么用?Java TaskEntity.createAndInsert使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.activiti.engine.impl.persistence.entity.TaskEntity
的用法示例。
在下文中一共展示了TaskEntity.createAndInsert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import org.activiti.engine.impl.persistence.entity.TaskEntity; //导入方法依赖的package包/类
public void execute(ActivityExecution execution) throws Exception {
TaskEntity task = TaskEntity.createAndInsert(execution);
task.setExecution(execution);
task.setTaskDefinition(taskDefinition);
if (taskDefinition.getNameExpression() != null) {
String name = (String) taskDefinition.getNameExpression().getValue(execution);
task.setName(name);
}
if (taskDefinition.getDescriptionExpression() != null) {
String description = (String) taskDefinition.getDescriptionExpression().getValue(execution);
task.setDescription(description);
}
if(taskDefinition.getDueDateExpression() != null) {
Object dueDate = taskDefinition.getDueDateExpression().getValue(execution);
if(dueDate != null) {
if(!(dueDate instanceof Date)) {
throw new ActivitiException("Due date expression does not resolve to a Date: " +
taskDefinition.getDueDateExpression().getExpressionText());
}
task.setDueDate((Date) dueDate);
}
}
handleAssignments(task, execution);
// All properties set, now firing 'create' event
task.fireEvent(TaskListener.EVENTNAME_CREATE);
}
示例2: execute
import org.activiti.engine.impl.persistence.entity.TaskEntity; //导入方法依赖的package包/类
public void execute(ActivityExecution execution) throws Exception {
TaskEntity task = TaskEntity.createAndInsert(execution);
task.setExecution(execution);
task.setTaskDefinition(taskDefinition);
if (taskDefinition.getNameExpression() != null) {
String name = (String) taskDefinition.getNameExpression().getValue(execution);
task.setName(name);
}
if (taskDefinition.getDescriptionExpression() != null) {
String description = (String) taskDefinition.getDescriptionExpression().getValue(execution);
task.setDescription(description);
}
if(taskDefinition.getDueDateExpression() != null) {
Object dueDate = taskDefinition.getDueDateExpression().getValue(execution);
if(dueDate != null) {
if(!(dueDate instanceof Date)) {
throw new ActivitiException("Due date expression does not resolve to a Date: " +
taskDefinition.getDueDateExpression().getExpressionText());
}
task.setDueDate((Date) dueDate);
}
}
if (taskDefinition.getPriorityExpression() != null) {
final Object priority = taskDefinition.getPriorityExpression().getValue(execution);
if (priority != null) {
if (priority instanceof String) {
try {
task.setPriority(Integer.valueOf((String) priority));
} catch (NumberFormatException e) {
throw new ActivitiException("Priority does not resolve to a number: " + priority, e);
}
} else if (priority instanceof Number) {
task.setPriority(((Number) priority).intValue());
} else {
throw new ActivitiException("Priority expression does not resolve to a number: " +
taskDefinition.getPriorityExpression().getExpressionText());
}
}
}
handleAssignments(task, execution);
// All properties set, now firing 'create' event
task.fireEvent(TaskListener.EVENTNAME_CREATE);
}
示例3: execute
import org.activiti.engine.impl.persistence.entity.TaskEntity; //导入方法依赖的package包/类
public void execute(ActivityExecution execution) throws Exception {
TaskEntity task = TaskEntity.createAndInsert(execution);
task.setExecution(execution);
task.setTaskDefinition(taskDefinition);
if (taskDefinition.getNameExpression() != null) {
String name = (String) taskDefinition.getNameExpression().getValue(execution);
task.setName(name);
}
if (taskDefinition.getDescriptionExpression() != null) {
String description = (String) taskDefinition.getDescriptionExpression().getValue(execution);
task.setDescription(description);
}
if(taskDefinition.getDueDateExpression() != null) {
Object dueDate = taskDefinition.getDueDateExpression().getValue(execution);
if(dueDate != null) {
if (dueDate instanceof Date) {
task.setDueDate((Date) dueDate);
} else if (dueDate instanceof String) {
task.setDueDate(new DueDateBusinessCalendar().resolveDuedate((String) dueDate));
} else {
throw new ActivitiIllegalArgumentException("Due date expression does not resolve to a Date or Date string: " +
taskDefinition.getDueDateExpression().getExpressionText());
}
}
}
if (taskDefinition.getPriorityExpression() != null) {
final Object priority = taskDefinition.getPriorityExpression().getValue(execution);
if (priority != null) {
if (priority instanceof String) {
try {
task.setPriority(Integer.valueOf((String) priority));
} catch (NumberFormatException e) {
throw new ActivitiIllegalArgumentException("Priority does not resolve to a number: " + priority, e);
}
} else if (priority instanceof Number) {
task.setPriority(((Number) priority).intValue());
} else {
throw new ActivitiIllegalArgumentException("Priority expression does not resolve to a number: " +
taskDefinition.getPriorityExpression().getExpressionText());
}
}
}
handleAssignments(task, execution);
// All properties set, now firing 'create' event
task.fireEvent(TaskListener.EVENTNAME_CREATE);
}