Package org.huihoo.workflow.impl.usermodel

Examples of org.huihoo.workflow.impl.usermodel.WorkflowDepartmentImpl


     * @param departmentname   The department name of the new department
     * @param description The description of this department
     */
  public WorkflowDepartment createDepartment(String departmentid, String departmentname, String description)
  {
    WorkflowDepartment department = new WorkflowDepartmentImpl(this, departmentid, departmentname, description);
    synchronized (departments)
    {
      departments.put(department.getUUID(), department);
    }
    return (department);
  }
View Full Code Here


    return (department);
  }

  public WorkflowDepartment createDepartment(String departmentid, String departmentname, String description, WorkflowDepartment parentDepartment)
  {
    WorkflowDepartment department = new WorkflowDepartmentImpl(this, departmentid, departmentname, description, parentDepartment);

    synchronized (departments)
    {
      departments.put(department.getUUID(), department);
    }
    return (department);
  }
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.impl.usermodel.WorkflowDepartmentImpl

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.