Examples of WFTemplate


Examples of eu.planets_project.ifr.core.wdt.impl.wf.WFTemplate

  * loads workflow templates from data storage
  */
  public String loadTemplates() {
    templates = new ArrayList<WFTemplate>();
//    templates.add(new WFTemplate("NOP Template", "views/wf.characterization.xhtml", "characterizationWorkflowBean"));
    templates.add(new WFTemplate("Simple Conversion", "views/wf.simpleconvertdemo.xhtml", "demoSimpleConvertBean"));
    templates.add(new WFTemplate("Level-1 Conversion", "views/wf.level1demo.xhtml", "level1ConvertBean"));
    templates.add(new WFTemplate("Droid Identification", "views/wf.droiddemo.xhtml", "droidBean"));
    templates.add(new WFTemplate("Dual Migration", "views/wf.review1.xhtml", "review1Bean"));   
//    templates.add(new WFTemplate("ImageMagic", "views/imageMagic.xhtml", "imageMagicBean"));
    return "success-loadTemplates";
  }
View Full Code Here

Examples of eu.planets_project.ifr.core.wdt.impl.wf.WFTemplate

  /*
  * @return the currently selected workflowBean implementation
  */
  protected WorkflowBean getCurrentWorkflowBean() {
    TemplateContainer templateContainer = (TemplateContainer) JSFUtil.getManagedObject("templateContainer");
    WFTemplate currentTemplate = templateContainer.getCurrentTemplate();
    WorkflowBean wfBean = (WorkflowBean) JSFUtil.getManagedObject(currentTemplate.getBeanInstance());
    return wfBean;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.