Package org.uengine.persistence.processinstance

Examples of org.uengine.persistence.processinstance.ProcessInstanceDAOType.findByPrimaryKey()


  ProcessInstanceDAO processInstanceDAO;
  public ProcessInstanceDAO getProcessInstanceDAO() throws Exception{
    if(processInstanceDAO == null){
      ProcessInstanceDAOType pidt = ProcessInstanceDAOType.getInstance(getProcessTransactionContext());
      processInstanceDAO = pidt.findByPrimaryKey(new Long(getInstanceId()));
      processInstanceDAO.getImplementationObject().setTableName("BPM_PROCINST");
      processInstanceDAO.getImplementationObject().setKeyField("INSTID");
      processInstanceDAO.getImplementationObject().createUpdateSql();
    }
   
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.