Package org.infoglue.cms.entities.mydesktop

Examples of org.infoglue.cms.entities.mydesktop.WorkflowStepVO.addAction()


      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


    step.setStepId(new Integer(stepDescriptor.getId()));
    step.setName(stepDescriptor.getName());
    step.setStatus("Not started");

    for (Iterator i = stepDescriptor.getActions().iterator(); i.hasNext();)
      step.addAction(createActionVO((ActionDescriptor)i.next()));

    return step;
  }

  /**
 
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.