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 oldValue = null; 11 Object newValue = null; 12 13 public HibernateStringUpdateLog() { 14 } 15 16 public HibernateStringUpdateLog(VariableInstance variableInstance, Object oldValue, Object newValue) { 17 super(variableInstance); 18 this.oldValue = oldValue; 19 this.newValue = newValue; 20 } 21 22 public Object getOldValue() { 23 return null; 24 } 25 26 public Object getNewValue() { 27 return null; 28 } 29 30 } 31 | Popular Tags |