Package org.huihoo.workflow

Examples of org.huihoo.workflow.WorkflowException


          performer,
          arriveTime);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
    return workId;
  }
View Full Code Here


      conn = ConnUtils.getConnection(getStore());
      gCaseDBImpl.updateWork_impl(this,workflowProcess,operator,conn, true, workflowWork);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
  }
View Full Code Here

      conn = ConnUtils.getConnection(getStore());
      gCaseDBImpl.deleteWork_impl(this,workflowProcess,operator,conn, true, workflowWork);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
  }
View Full Code Here

      conn = ConnUtils.getConnection(getStore());
      return gCaseDBImpl.findWork_impl(this,workflowProcess,operator,conn, true, workflowCase, workId);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }

  }
View Full Code Here

      conn = ConnUtils.getConnection(getStore());
      return gCaseDBImpl.getWorkList_impl(this,workflowProcess,operator,conn, true, performer, itemStatus);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }

  }
View Full Code Here

      conn = ConnUtils.getConnection(getStore());
      return gCaseDBImpl.getWorkList_impl(this,workflowProcess,operator,conn, true, workflowCase, performer, itemStatus);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
  }
View Full Code Here

      pathId =
        gCaseDBImpl.createPath_impl(this,workflowProcess,operator,conn, true, workflowCase, fromWork, toWork, batchNo, eventType);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
    return pathId;
  }
View Full Code Here

      conn = ConnUtils.getConnection(getStore());
      return gCaseDBImpl.findPath_impl(this,workflowProcess,operator,conn, true, workflowCase, pathId);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
  }
View Full Code Here

      conn = ConnUtils.getConnection(getStore());
      return gCaseDBImpl.getPathList_impl(this,workflowProcess,operator,conn, true, workflowWork, isInPath);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
  }
View Full Code Here

      conn = ConnUtils.getConnection(getStore());
      gCaseDBImpl.deletePath_impl(this,workflowProcess,operator,conn, true, workflowPath);
    }
    catch (SQLException sqlex)
    {
      throw new WorkflowException(sqlex);
    }
  }
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.WorkflowException

Copyright © 2018 www.massapicom. 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.