Package org.jbpm.pvm.internal.history.model

Examples of org.jbpm.pvm.internal.history.model.HistoryVariableImpl.updated()


  @Override
  public void process() {
    DbSession dbSession = Environment.getFromCurrent(DbSession.class);
    HistoryVariableImpl historyVariable = dbSession.get(HistoryVariableImpl.class, variable.getDbid());
    historyVariable.updated(variable);
  }
}
View Full Code Here


  @Override
  public void process() {
    DbSession dbSession = EnvironmentImpl.getFromCurrent(DbSession.class);
    HistoryVariableImpl historyVariable = dbSession.get(HistoryVariableImpl.class, variable.getDbid());
    historyVariable.updated(variable);
  }

  public Variable getVariable() {
    return variable;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.