congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
CallActivity.getId
Code IndexAdd Tabnine to your IDE (free)

How to use
getId
method
in
org.camunda.bpm.model.bpmn.instance.CallActivity

Best Java code snippets using org.camunda.bpm.model.bpmn.instance.CallActivity.getId (Showing top 2 results out of 315)

origin: viadee/vPAV

/**
 * Integrate parallel gateways into the main data flow before and after the call
 * activity
 *
 * @param callActivity
 *            CallActivity
 * @param graph
 *            Current Graph
 * @param parallelGateway1
 *            First parallel gateway (BpmnElement)
 * @param parallelGateway2
 *            Second parallel gateway (BpmnElement)
 */
private void connectParallelGatewaysWithMainDataFlow(final CallActivity callActivity, final IGraph graph,
    final BpmnElement parallelGateway1, final BpmnElement parallelGateway2) {
  // read incoming and outgoing sequence flows of the call activity
  final SequenceFlow incomingSequenceFlow = callActivity.getIncoming().iterator().next();
  final SequenceFlow outgoingSequenceFlow = callActivity.getOutgoing().iterator().next();
  // remove edges
  graph.removeEdge(elementMap.get(incomingSequenceFlow.getId()), elementMap.get(callActivity.getId()));
  graph.removeEdge(elementMap.get(callActivity.getId()), elementMap.get(outgoingSequenceFlow.getId()));
  // link parallel gateways with the existing data flow
  graph.addEdge(elementMap.get(incomingSequenceFlow.getId()), parallelGateway1, 100);
  graph.addEdge(parallelGateway2, elementMap.get(outgoingSequenceFlow.getId()), 100);
  graph.addEdge(parallelGateway1, elementMap.get(callActivity.getId()), 100);
  graph.addEdge(elementMap.get(callActivity.getId()), parallelGateway2, 100);
}
origin: viadee/vPAV

+ callActivity.getId() + "). please avoid loops.");
org.camunda.bpm.model.bpmn.instanceCallActivitygetId

Popular methods of CallActivity

  • builder
  • setCalledElement
  • setCamundaAsyncBefore
  • setCamundaCalledElementBinding
  • setCamundaCalledElementTenantId
  • setCamundaCalledElementVersion
  • setCamundaCalledElementVersionTag
  • setCamundaCaseBinding
  • setCamundaCaseRef
  • setCamundaCaseTenantId
  • setCamundaCaseVersion
  • setCamundaVariableMappingClass
  • setCamundaCaseVersion,
  • setCamundaVariableMappingClass,
  • setCamundaVariableMappingDelegateExpression,
  • getAttributeValueNs,
  • getCalledElement,
  • getExtensionElements,
  • getIncoming,
  • getOutgoing

Popular in Java

  • Making http post requests using okhttp
  • getApplicationContext (Context)
  • getResourceAsStream (ClassLoader)
  • setRequestProperty (URLConnection)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now