Exemple #1
0
 /* (non-Javadoc)
  * @see ieci.tdw.ispac.api.IWorklistAPI#getProcesses(int)
  */
 public IItemCollection getProcesses(int idStagePCD) throws ISPACException {
   String resp = getRespString();
   DbCnt cnt = context.getConnection();
   try {
     return WLProcessDAO.getExps(cnt, resp, idStagePCD).disconnect();
   } catch (ISPACException ie) {
     throw new ISPACException("Error en WLWorklist:getProcesses(" + idStagePCD + ")", ie);
   } finally {
     context.releaseConnection(cnt);
   }
 }