Package com.founder.fix.bpmn2extensions.coreconfig

Examples of com.founder.fix.bpmn2extensions.coreconfig.ExpandClassConfig


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetExpandClassConfig(ExpandClassConfig newExpandClassConfig, NotificationChain msgs) {
    ExpandClassConfig oldExpandClassConfig = expandClassConfig;
    expandClassConfig = newExpandClassConfig;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CoreconfigPackage.FIX_FLOW_CONFIG__EXPAND_CLASS_CONFIG, oldExpandClassConfig, newExpandClassConfig);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here


 
  /**
   * 创建令牌查询
   */
  public TokenQuery createTokenQuery(CommandExecutor commandExecutor){
    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("TokenQuery")){
        Object[] objTemp = new Object[] {commandExecutor}
        TokenQuery tokenQuery =(TokenQuery) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return tokenQuery;
View Full Code Here

 
  /**
   * 创建流程定义查询
   */
  public ProcessDefinitionQuery createProcessDefinitionQuery(CommandExecutor commandExecutor){
    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("ProcessDefinitionQuery")){
        Object[] objTemp = new Object[] {commandExecutor}
        ProcessDefinitionQuery processDefinitionQuery =(ProcessDefinitionQuery) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return processDefinitionQuery;
View Full Code Here

  }


  public TaskMgmtInstance createTaskMgmtInstance() {
   
    ExpandClassConfig expandClassConfig = processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("TaskMgmtInstance")){
       
        TaskMgmtInstance taskMgmtInstance =(TaskMgmtInstance) ReflectUtil.instantiate(expandClass.getClassImpl());
        return taskMgmtInstance;
View Full Code Here

  /**
   * 创建任务实例持久化对象
   */
  public TaskInstancePersistence createTaskInstancePersistence(Connection connection) {
   
    ExpandClassConfig expandClassConfig = processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("TaskInstancePersistence")){
        Object[] objTemp = new Object[] {connection}
        TaskInstancePersistence taskInstancePersistence =(TaskInstancePersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return taskInstancePersistence;
View Full Code Here

  /**
   * 创建流程实例持久化对象
   */
  public ProcessInstancePersistence createProcessInstancePersistence(
      Connection connection) {
    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("ProcessInstancePersistence")){
        Object[] objTemp = new Object[] {connection}
        ProcessInstancePersistence processInstancePersistence =(ProcessInstancePersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return processInstancePersistence;
View Full Code Here

  /**
   * 创建任务候选人持久化
   */
  public IdentityLinkPersistence createIdentityLinkPersistence(
      Connection connection) {
    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("IdentityLinkPersistence")){
        Object[] objTemp = new Object[] {connection}
        IdentityLinkPersistence identityLinkPersistence =(IdentityLinkPersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return identityLinkPersistence;
View Full Code Here

  /**
   * 创建定时任务持久化
   */
  public JobPersistence createJobPersistence(
      Connection connection) {
    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("JobPersistence")){
        Object[] objTemp = new Object[] {connection}
        JobPersistence jobPersistence =(JobPersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return jobPersistence;
View Full Code Here

 
  /**
   * 创建令牌持久化
   */
  public TokenPersistence createTokenPersistence(Connection connection){
    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("TokenPersistence")){
        Object[] objTemp = new Object[] {connection}
        TokenPersistence tokenPersistence =(TokenPersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return tokenPersistence;
View Full Code Here

  /**
   * 创建流程变量持久化
   */
  public VariablePersistence createVariablePersistence(Connection connection){
    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("VariablePersistence")){
        Object[] objTemp = new Object[] {connection}
        VariablePersistence variablePersistence =(VariablePersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return variablePersistence;
View Full Code Here

TOP

Related Classes of com.founder.fix.bpmn2extensions.coreconfig.ExpandClassConfig

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.