Package com.starflow.wf.engine.core.split

Examples of com.starflow.wf.engine.core.split.AllSplitMode


*/
public class SplitModeFactory {
 
  public static SplitMode buildSplitStrategy(String mode) {
    if(Constants.SPLIT_ALL.equalsIgnoreCase(mode))
      return new AllSplitMode();
    else if(Constants.SPLIT_MULTI.equalsIgnoreCase(mode))
      return new MultiSplitMode();
    else if(Constants.SPLIT_SINGLE.equalsIgnoreCase(mode))
      return new SingleSplitMode();
    else
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.split.AllSplitMode

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.