208209210211212213214215
conn = ConnUtils.getConnection(getStore()); return gCaseDBImpl.findCase_impl(this,workflowProcess,operator,conn, true, caseId, false); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
221222223224225226227228
conn = ConnUtils.getConnection(getStore()); return gCaseDBImpl.findCase_impl(this,workflowProcess,operator,conn, true, primaryKey.getUUID(), true); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
234235236237238239240241
conn = ConnUtils.getConnection(getStore()); return gCaseDBImpl.getCaseList_impl(this,workflowProcess,operator,conn, true, creator); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
268269270271272273274275
conn = ConnUtils.getConnection(getStore()); gCaseDBImpl.updateCase_impl(this,workflowProcess,operator,conn, true, workflowCase); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
289290291292293294295296
conn = ConnUtils.getConnection(getStore()); gCaseDBImpl.deleteCase_impl(this,workflowProcess,operator,conn, true, workflowCase); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
310311312313314315316317
conn = ConnUtils.getConnection(getStore()); gCaseDBImpl.changeCase_impl(this,workflowProcess,operator,conn, true, workflowCase, Constants.CASE_STATUS_CANCELED); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
330331332333334335336337
conn = ConnUtils.getConnection(getStore()); gCaseDBImpl.changeCase_impl(this,workflowProcess,operator,conn, true, workflowCase, Constants.CASE_STATUS_CLOSED); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
351352353354355356357358
conn = ConnUtils.getConnection(getStore()); gCaseDBImpl.changeCase_impl(this,workflowProcess,operator,conn, true, workflowCase, Constants.CASE_STATUS_SUSPENDED); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
371372373374375376377378
conn = ConnUtils.getConnection(getStore()); gCaseDBImpl.changeCase_impl(this,workflowProcess,operator,conn, true, workflowCase, Constants.CASE_STATUS_RUNNING); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } }
399400401402403404405406407
workId = gCaseDBImpl.createWork_impl(this,workflowProcess,operator,conn, true, workflowCase, activity, performer, arriveTime); } catch (SQLException sqlex) { throw new WorkflowException(sqlex); } return workId; }