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