Package nexj.core.meta.workflow

Examples of nexj.core.meta.workflow.Join


         return activity.getStep(activity.getStepCount() - 1);
      }

      assignment.getActivity().addStep(fork);

      Join join = new Join(fork);

      join.setAny(true);
      assignment.getActivity().addStep(join);

      return decision;
   }
View Full Code Here


            {
               final Fork fork = new Fork(sStepName);

               fork.setActivity(activity);

               Join join = new Join(fork);
               String sType = XMLUtil.getStringAttr(element, "type", "all");

               if (sType.equals("all"))
               {
                  join.setAny(false);
               }
               else if (sType.equals("any"))
               {
                  join.setAny(true);
               }
               else
               {
                  throw new MetadataException("err.meta.workflow.joinType",
                     new Object[]{sType, activity.getFlow().getFullName()});
View Full Code Here

TOP

Related Classes of nexj.core.meta.workflow.Join

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.