Package eu.planets_project.ifr.core.wee.api.workflow.generated.WorkflowConf

Examples of eu.planets_project.ifr.core.wee.api.workflow.generated.WorkflowConf.Template


     * @throws Exception in the case of an invalid WorkflowConf
     */
    public WorkflowConf buildWorkflowConf(String wfTemplateName, List<ServiceBean> sbs) throws Exception{
     
      //1.add the template retrieved from the uploaded wfconfig
      Template serTempl = new Template();
      serTempl.setClazz(wfTemplateName);
     
      Services services = new Services();
      //2.browse through the provided services and build the Services object
      for(ServiceBean sb : sbs){
        Service service = new Service();
View Full Code Here


     */
    public String buildXMLConfigFromCurrentConfiguration(){
      WorkflowConf conf = new WorkflowConf();
     
      //1.add the template retrieved from the uploaded wfconfig
      Template serTempl = this.getWeeXMLConfig().getTemplate();
     
      Services services = new Services();
      //2.browse through the servicebeans and build the Services object
      for(ServiceBean sb : this.getServiceBeans()){
        Service service = new Service();
View Full Code Here

   *  creates a WorkflowConf object.
   */
  public WorkflowConf buildWorkflowConfFromCurrentConfiguration(){
   
    //create the template name - it's predefined
    Template serTempl = new Template();
    serTempl.setClazz(bp.getProperty(BackendProperties.TB_EXPTYPE_MIGRATION_WEE_WFTEMPLATENAME));
     
      //create the Service
      Services services = new Services();
      Service sMigrate = new Service();
      sMigrate.setId("migrate1");
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.wee.api.workflow.generated.WorkflowConf.Template

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.