Package org.huihoo.workflow.xpdl.activity

Examples of org.huihoo.workflow.xpdl.activity.ActivityType


    newLine(out);
    serialize(activity.getImplementation(), out, nsPrefix, ident_unit + 1);
    serializeTransitionRestrictions(activity, out, nsPrefix, ident_unit + 1);
   
   
    ActivityType act_type=activity.getActivityType();
    if(act_type != null)
    {
      activity.addExtendedAttribute(new ExtendedAttribute(XPDLGlobals.ACTIVITY_TYPE,act_type.getType()));
    }
   
    PerformerType pf_type=activity.getPerformerType();
    if(pf_type!=null)
    {
View Full Code Here


  {
    log.debug(
      "[dispatch_general] workitem: " + workflowWork.getInfo() + " | transition: " + workflowTransition.getInfo());

    PerformerType performerType = workflowTransition.getToWorkflowActivity().getPerformerType();
    ActivityType activityType = workflowTransition.getToWorkflowActivity().getActivityType();

    if (PerformerType.PERFORMER_AUTOMATION.equals(performerType)
      || !ActivityType.ACTIVITY_BUSINESS.equals(activityType))
    {
      return dispatch_automation(
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.xpdl.activity.ActivityType

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.