Package com.starflow.wf.engine.core.join

Examples of com.starflow.wf.engine.core.join.MultiJoinMode


 
  public JoinMode buildJoinStrategy(String mode) {
    if(Constants.JOIN_ALL.equalsIgnoreCase(mode))
      return new AllJoinMode();
    else if(Constants.JOIN_MULTI.equalsIgnoreCase(mode))
      return new MultiJoinMode();
    else if(Constants.JOIN_SINGLE.equalsIgnoreCase(mode))
      return new SingleJoinMode();
    else
      throw new ProcessEngineException("聚合模式值不正确,Mode="+mode);
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.join.MultiJoinMode

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.