Package com.opensymphony.workflow.loader

Examples of com.opensymphony.workflow.loader.StepDescriptor


    stepVO.setOwner(step.getOwner());
    stepVO.setCaller(step.getCaller());
   
    try
    {
      StepDescriptor stepDescriptor = workflowDescriptor.getStep(step.getStepId());
      if(stepDescriptor != null)
      {
        stepVO.setName(stepDescriptor.getName());
        for (Iterator i = stepDescriptor.getActions().iterator(); i.hasNext();)
          stepVO.addAction(createActionVO((ActionDescriptor)i.next()));
      }
      else
      {
        throw new SystemException("No stepDescriptor found for " + step);
View Full Code Here

TOP

Related Classes of com.opensymphony.workflow.loader.StepDescriptor

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.