Ejemplo n.º 1
0
 /**
  * 删除instance所有VariableValue
  *
  * @param instanceId
  * @param conn
  * @throws WorkflowException
  * @throws
  * @see
  */
 public void removeByInstance(int instanceId) throws WorkflowException {
   try {
     VariableValueBean bean = new VariableValueBean();
     bean.removeByInstance(instanceId);
   } catch (SQLException sqle) {
     throw new WorkflowException(1311, sqle.toString());
   }
 }