KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > taskmgmt > log > TaskEndLog


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 JavaDoc toString() {
17     return "task-end["+taskInstance+"]";
18   }
19 }
20
Popular Tags