Package com.founder.fix.fixflow.core.exception

Examples of com.founder.fix.fixflow.core.exception.FixFlowException


        Object[] objTemp = new Object[] {connection}
        JobPersistence jobPersistence =(JobPersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return jobPersistence;
      }
    }
    throw new FixFlowException("流程引擎扩展配置里的JobPersistence实现类指定错误");
  }
View Full Code Here


      scheduler = getScheduler();
      if(!scheduler.isInStandbyMode()){
        scheduler.standby();
      }
    } catch (SchedulerException e) {
      throw new FixFlowException(e.getMessage(),e);
    }
  }
View Full Code Here

      for(JobKey key :set){
        JobDetail job = scheduler.getJobDetail(key);
        jobList.add(job);
      }
    }catch (SchedulerException e) {
        throw new FixFlowException(e.getMessage(),e);
      }
    return jobList;
  }
View Full Code Here

        Object[] objTemp = new Object[] {connection}
        TokenPersistence tokenPersistence =(TokenPersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return tokenPersistence;
      }
    }
    throw new FixFlowException("流程引擎扩展配置里的TokenPersistence实现类指定错误");
  }
View Full Code Here

    }
    Scheduler scheduler = getScheduler();
    try {
      scheduler.pauseJob(new JobKey(name,group));
    } catch (SchedulerException e) {
      throw new FixFlowException(e.getMessage(),e);
    }
  }
View Full Code Here

        Object[] objTemp = new Object[] {connection}
        VariablePersistence variablePersistence =(VariablePersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return variablePersistence;
      }
    }
    throw new FixFlowException("流程引擎扩展配置里的VariablePersistence实现类指定错误");
  }
View Full Code Here

        Object[] objTemp = new Object[] {connection}
        DeploymentPersistence deploymentPersistence =(DeploymentPersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return deploymentPersistence;
      }
    }
    throw new FixFlowException("流程引擎扩展配置里的DeploymentPersistence实现类指定错误");
  }
View Full Code Here

    }
    Scheduler scheduler = getScheduler();
    try {
      scheduler.resumeJob(new JobKey(name,group));
    } catch (SchedulerException e) {
      throw new FixFlowException(e.getMessage(),e);
    }
  }
View Full Code Here

        Object[] objTemp = new Object[] {connection}
        ResourcePersistence resourcePersistence =(ResourcePersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return resourcePersistence;
      }
    }
    throw new FixFlowException("流程引擎扩展配置里的ResourcePersistence实现类指定错误");
  }
View Full Code Here

    try{
      @SuppressWarnings("unchecked")
      List<Trigger> triggers = (List<Trigger>) scheduler.getTriggersOfJob(new JobKey(jobName,jobGroup));
      return triggers;
    }catch(Exception e){
      throw new FixFlowException(e.getMessage(),e);
    }
  }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.exception.FixFlowException

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.