Package org.uengine.persistence.worklist

Examples of org.uengine.persistence.worklist.WorklistDAOType


    if(updateWorkList){
      //reflect the duedate changes to the worklist where the taskid matches.
      String[] taskIds = getTaskIds(instance);
     
//      update the duedates of the associated workitems
      WorklistDAOType worklistDF = WorklistDAOType.getInstance(instance.getProcessTransactionContext());
      Date dueDateInDate = (dueDate == null ? null:dueDate.getTime());
//      System.out.println("dueDateInDate : " + dueDateInDate );
      worklistDF.updateDueDateByTaskId(taskIds, dueDateInDate);
    }
   
    firePropertyChangeEventToActivityFilters(instance, PVKEY_DUEDATE, dueDate);
  }
View Full Code Here

TOP

Related Classes of org.uengine.persistence.worklist.WorklistDAOType

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.