KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jbpm.taskmgmt.log;
2
3 import org.jbpm.taskmgmt.exe.SwimlaneInstance;
4
5 public class SwimlaneCreateLog extends SwimlaneLog {
6
7   private static final long serialVersionUID = 1L;
8
9   protected String JavaDoc swimlaneActorId = null;
10
11   public SwimlaneCreateLog() {
12   }
13
14   public SwimlaneCreateLog(SwimlaneInstance swimlaneInstance, String JavaDoc swimlaneActorId) {
15     super(swimlaneInstance);
16     this.swimlaneActorId = swimlaneActorId;
17   }
18
19   public String JavaDoc toString() {
20     return "swimlane-create["+swimlaneInstance+"]";
21   }
22   
23   public String JavaDoc getSwimlaneActorId() {
24     return swimlaneActorId;
25   }
26 }
27
Popular Tags