Package com.starflow.wf.engine.core.activity

Examples of com.starflow.wf.engine.core.activity.EndActivityType


 
  public static ActivityType buildActivityType(String type) {
    if(Constants.ACT_TYPE_START.equalsIgnoreCase(type))
      return new StartActivityType();
    else if(Constants.ACT_TYPE_END.equalsIgnoreCase(type))
      return new EndActivityType();
    else if(Constants.ACT_TYPE_MANUL.equalsIgnoreCase(type))
      return new ManualActivityType();
    else if(Constants.ACT_TYPE_TOOLAPP.equalsIgnoreCase(type))
      return new ToolAppActivityType();
    else if(Constants.ACT_TYPE_SUBPROCESS.equalsIgnoreCase(type))
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.activity.EndActivityType

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.