1 package org.jbpm.taskmgmt.log; 2 3 import org.jbpm.taskmgmt.exe.TaskInstance; 4 5 public class TaskEndLog extends TaskLog { 6 7 private static final long serialVersionUID = 1L; 8 9 public TaskEndLog() { 10 } 11 12 public TaskEndLog(TaskInstance taskInstance) { 13 super(taskInstance); 14 } 15 16 public String toString() { 17 return "task-end["+taskInstance+"]"; 18 } 19 } 20 | Popular Tags |