Package com.founder.fix.fixflow.core.action

Examples of com.founder.fix.fixflow.core.action.AssignmentHandler


    return taskDefinitionImpl;
  }


  public AssignmentHandler createAssignmentHandler(String className) {
    AssignmentHandler assignmentHandler = (AssignmentHandler) ReflectUtil.instantiate(className);
    return assignmentHandler;
  }
View Full Code Here


        throw new FixFlowException("任务的分配策略没有实现类,请检查!");
      } else {
        String classImpl = assignPolicy.getClassImpl();
       
   
        AssignmentHandler assignmentHandler = ProcessObjectFactory.FACTORYINSTANCE.createAssignmentHandler(classImpl);
        assignmentHandler.assign(assignable, executionContext);
      }

    }

  }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.action.AssignmentHandler

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.