1 package org.jbpm.context.exe.variableinstance; 2 3 import org.jbpm.context.exe.*; 4 import org.jbpm.context.log.variableinstance.*; 5 6 public class HibernateStringInstance extends VariableInstance { 7 8 private static final long serialVersionUID = 1L; 9 10 protected Object value = null; 11 12 protected boolean supports(Class clazz) { 13 return true; 14 } 15 16 public Object getObject() { 17 return value; 18 } 19 20 public void setObject(Object value) { 21 token.addLog(new HibernateStringUpdateLog(this, this.value, value)); 22 this.value = value; 23 } 24 } 25 | Popular Tags |