Package com.google.code.lightssh.project.workflow.model

Examples of com.google.code.lightssh.project.workflow.model.MyTask


  /**
   * 我的待办任务
   */
  public String myTodoList(){
    if( task == null )
      task = new MyTask();
    task.setAssignee( getLoginUser() ); //登录用户
   
    taskPage = workflowManager.listTask(task,taskPage);
   
    return SUCCESS;
View Full Code Here


  /**
   * 我的待办任务数
   */
  public String myTodoCount(){
    if( task == null )
      task = new MyTask();
    task.setAssignee( getLoginUser() ); //登录用户
   
    if( taskPage == null )
      taskPage = new ListPage<Task>();
    taskPage.setSize(0);
View Full Code Here

  /**
   * 我的待签任务
   */
  public String myAssignList(){
    if( task == null )
      task = new MyTask();
    task.setCandidateUser( getLoginUser() ); //当前登录用户
   
    taskPage = workflowManager.listTask(task,taskPage);
   
    return SUCCESS;
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.workflow.model.MyTask

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.