Package com.starflow.wf.engine.core.workitem

Examples of com.starflow.wf.engine.core.workitem.SingleWorkItemMode


* @version 1.0
*/
public class WorkItemModeFactory {
  public static WorkItemMode buildWorkItemMode(String mode) {
    if(Constants.WORKITEM_SINGLE.equalsIgnoreCase(mode))
      return new SingleWorkItemMode();
    else if(Constants.WORKITEM_MULTI.equalsIgnoreCase(mode))
      return new MultiWorkItemMode();
    else
      throw new ProcessEngineException("工作项模式值不正确,Mode="+mode);
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.workitem.SingleWorkItemMode

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.