Package com.catify.processengine.core.services

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


      List<ActorRef> outgoingNodes, DataObjectService dataObjectHandling) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setEventDefinitionParameter(eventDefinitionParameter);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
    this.setDataObjectHandling(dataObjectHandling);
   
    // create EventDefinition actor
    this.eventDefinitionActor = EventDefinitionHandling
View Full Code Here


      List<ActorRef> outgoingNodes, DataObjectService dataObjectHandling) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setEventDefinitionParameter(eventDefinitionParameter);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
    this.setDataObjectHandling(dataObjectHandling);
   
    // create EventDefinition actor
    this.eventDefinitionActor = EventDefinitionHandling
View Full Code Here

      List<ActorRef> outgoingNodes, String actorRefString,
      EventDefinitionParameter eventDefinitionParameter, DataObjectService dataObjectHandling) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
    this.setEventDefinitionParameter(eventDefinitionParameter);
    this.setDataObjectHandling(dataObjectHandling);
   
    // create EventDefinition actor
View Full Code Here

      EventDefinitionParameter eventDefinitionParameter, ActorRef parentSubProcessNode, DataObjectService dataObjectHandling, Set<String> dataObjectIds) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setEventDefinitionParameter(eventDefinitionParameter);
    this.parentSubProcessNode = parentSubProcessNode;
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
    this.setDataObjectHandling(dataObjectHandling);
    this.dataObjectIds = dataObjectIds;
   
    // create EventDefinition actor
View Full Code Here

      List<ActorRef> outgoingNodes,
      TMessageIntegration messageIntegrationInOut, DataObjectService dataObjectHandling) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
    this.setDataObjectHandling(dataObjectHandling);
   
    // messages are handled by the integrationSpi
    if (messageIntegrationInOut != null) {
View Full Code Here

      List<ActorRef> outgoingNodes, String actorRefString,
      EventDefinitionParameter eventDefinitionParameter, DataObjectService dataObjectHandling) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
    this.setEventDefinitionParameter(eventDefinitionParameter);
    this.setDataObjectHandling(dataObjectHandling);
   
    // create EventDefinition actor
View Full Code Here

      DataObjectService dataObjectHandler) {

    super.setUniqueProcessId(uniqueProcessId);
    super.setOutgoingNodes(outgoingNodes);
    super.setUniqueFlowNodeId(uniqueFlowNodeId);
    super.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
   
    this.defaultOutgoingSequence = defaultNode;
   
    // create all needed object ids
View Full Code Here

      List<ActorRef> outgoingNodes,
      TMessageIntegration messageIntegrationInOut, DataObjectService dataObjectHandling) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
    this.setMessageIntegrationInOut(messageIntegrationInOut);
   
    // all service task instances share this service object, it might therefore need some kind of synchronization
    this.setDataObjectHandling(dataObjectHandling);
View Full Code Here

  public SubProcessNode (String uniqueProcessId, String uniqueFlowNodeId, List<ActorRef> outgoingNodes,
      List<ActorRef> embeddedStartNodes, List<ActorRef> embeddedNodes) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
   
    this.embeddedStartNodes = embeddedStartNodes;
    this.embeddedNodes = embeddedNodes;
  }
View Full Code Here

  public EventBasedGatewayNode(String uniqueProcessId,
      String uniqueFlowNodeId, List<ActorRef> outgoingNodes) {
    this.setUniqueProcessId(uniqueProcessId);
    this.setUniqueFlowNodeId(uniqueFlowNodeId);
    this.setOutgoingNodes(outgoingNodes);
    this.setNodeInstanceMediatorService(new NodeInstanceMediatorService(
        uniqueProcessId, uniqueFlowNodeId));
  }
View Full Code Here

TOP

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

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.