KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jbpm.taskmgmt.log;
2
3 import org.jbpm.logging.log.ProcessLog;
4 import org.jbpm.taskmgmt.exe.TaskInstance;
5
6 public abstract class TaskLog extends ProcessLog {
7
8   private static final long serialVersionUID = 1L;
9
10   protected TaskInstance taskInstance = null;
11
12   public TaskLog() {
13   }
14
15   public TaskLog(TaskInstance taskInstance) {
16     this.taskInstance = taskInstance;
17   }
18   
19   public TaskInstance getTaskInstance() {
20     return taskInstance;
21   }
22 }
23
Popular Tags