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

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


*/
public class JoinModeFactory {
 
  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
View Full Code Here

TOP

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

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.