Package com.catify.processengine.core.services

Examples of com.catify.processengine.core.services.ActorReferenceService


  private Set<ActorRef> getOtherActorReferences(String clientId, TProcess processJaxb, ArrayList<TSubProcess> subProcessesJaxb,
      TFlowNode flowNodeJaxb) {
    Set<ActorRef> actorReferences = getAllActorReferences(clientId, processJaxb, subProcessesJaxb, null);
   
    // remove actor reference of given flow node
    actorReferences.remove(new ActorReferenceService().getActorReference(
            IdService.getUniqueFlowNodeId(clientId, processJaxb, subProcessesJaxb,
                flowNodeJaxb)));

    return actorReferences;
  }
View Full Code Here


      flowElements = subProcessJaxb.getFlowElement();
    }
   
    for (JAXBElement<? extends TFlowElement> flowElement : flowElements) {
      if (flowElement.getValue() instanceof TFlowNode) {
        actorReferences.add(new ActorReferenceService().getActorReference(
            IdService.getUniqueFlowNodeId(clientId, processJaxb, subProcessesJaxb,
                (TFlowNode) flowElement.getValue())));
      }
      if (flowElement.getValue() instanceof TSubProcess) {
        // create local copies for recursion
View Full Code Here

TOP

Related Classes of com.catify.processengine.core.services.ActorReferenceService

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.