KickJava   Java API By Example, From Geeks To Geeks.

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


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