Package org.uengine.util.dao

Examples of org.uengine.util.dao.ConnectiveDAO


 
  public WorkListDAO createWorkListDAOForInsertCall(Map options) throws Exception{
    return (WorkListDAO)Proxy.newProxyInstance(
      WorkListDAO.class.getClassLoader(),
      new Class[]{WorkListDAO.class},
      new ConnectiveDAO(
        getConnectionFactory(),
        true,
        "insert into bpm_worklist(taskId, title, description, endpoint, resName, status, priority, startdate, enddate, duedate, instid, rootinstid, defid, defname, trctag, tool, dispatchOption, parameter, roleName, refRoleName, dispatchParam1)  values(?taskId, ?title, ?description, ?endpoint, ?resName, ?status, ?priority, ?startdate, ?enddate, ?duedate, ?instId, ?rootinstId, ?defId, ?DefName, ?trcTag, ?tool, ?dispatchOption, ?parameter, ?roleName, ?refRoleName, ?dispatchParam1)",
        WorkListDAO.class
      ){
View Full Code Here

TOP

Related Classes of org.uengine.util.dao.ConnectiveDAO

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.