KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > context > log > variableinstance > HibernateStringUpdateLog


1 package org.jbpm.context.log.variableinstance;
2
3 import org.jbpm.context.exe.*;
4 import org.jbpm.context.log.*;
5
6 public class HibernateStringUpdateLog extends VariableUpdateLog {
7
8   private static final long serialVersionUID = 1L;
9
10   Object JavaDoc oldValue = null;
11   Object JavaDoc newValue = null;
12
13   public HibernateStringUpdateLog() {
14   }
15
16   public HibernateStringUpdateLog(VariableInstance variableInstance, Object JavaDoc oldValue, Object JavaDoc newValue) {
17     super(variableInstance);
18     this.oldValue = oldValue;
19     this.newValue = newValue;
20   }
21
22   public Object JavaDoc getOldValue() {
23     return null;
24   }
25
26   public Object JavaDoc getNewValue() {
27     return null;
28   }
29
30 }
31
Popular Tags