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