Package org.huihoo.workflow.impl.usermodel

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


     * @param rolename   The role name of the new role
     * @param description The description of this role
     */
  public WorkflowRole createRole(String roleid, String rolename, String description)
  {
    WorkflowRole role = new WorkflowRoleImpl(this, roleid, rolename, description);
    synchronized (roles)
    {
      roles.put(role.getUUID(), role);
    }
    return (role);
  }
View Full Code Here

TOP

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

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.