Package com.starflow.wf.engine.handle.impl

Examples of com.starflow.wf.engine.handle.impl.ToolAppHandle


*/
public class ActivityHandlerFactory {
 
  public static IHandle buildHandler(String type) {
    if(Constants.ACT_TYPE_TOOLAPP.equalsIgnoreCase(type))
      return new ToolAppHandle();
    else
      return new NullHandle();
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.handle.impl.ToolAppHandle

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.