Package org.huihoo.workflow.runtime

Examples of org.huihoo.workflow.runtime.PerformerSelector


      (ExtendedAttribute) workflowActivity.getExtendedAttributes().get(
        XPDLGlobals.SELECTOR_QUALIFIED_CLASS_NAME);

    String implClassName = attribute.getValue();
    Class implClass = null;
    PerformerSelector selector = null;
    try
    {
      implClass = Class.forName(implClassName);
      selector = (PerformerSelector) implClass.newInstance();
    }
    catch (Exception e)
    {
      throw new WorkflowException(e);
    }

    users = selector.select(workflowWork, workflowTransition);

    return users;
  }
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.runtime.PerformerSelector

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.