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

How to use
getDataOutputRefs
method
in
org.flowable.bpmn.model.IOSpecification

Best Java code snippets using org.flowable.bpmn.model.IOSpecification.getDataOutputRefs (Showing top 5 results out of 315)

origin: org.flowable/flowable-bpmn-model

  public void setValues(IOSpecification otherSpec) {
    dataInputs = new ArrayList<>();
    if (otherSpec.getDataInputs() != null && !otherSpec.getDataInputs().isEmpty()) {
      for (DataSpec dataSpec : otherSpec.getDataInputs()) {
        dataInputs.add(dataSpec.clone());
      }
    }

    dataOutputs = new ArrayList<>();
    if (otherSpec.getDataOutputs() != null && !otherSpec.getDataOutputs().isEmpty()) {
      for (DataSpec dataSpec : otherSpec.getDataOutputs()) {
        dataOutputs.add(dataSpec.clone());
      }
    }

    dataInputRefs = new ArrayList<>(otherSpec.getDataInputRefs());
    dataOutputRefs = new ArrayList<>(otherSpec.getDataOutputRefs());
  }
}
origin: org.ow2.petals.flowable/flowable-bpmn-model

  public void setValues(IOSpecification otherSpec) {
    dataInputs = new ArrayList<>();
    if (otherSpec.getDataInputs() != null && !otherSpec.getDataInputs().isEmpty()) {
      for (DataSpec dataSpec : otherSpec.getDataInputs()) {
        dataInputs.add(dataSpec.clone());
      }
    }

    dataOutputs = new ArrayList<>();
    if (otherSpec.getDataOutputs() != null && !otherSpec.getDataOutputs().isEmpty()) {
      for (DataSpec dataSpec : otherSpec.getDataOutputs()) {
        dataOutputs.add(dataSpec.clone());
      }
    }

    dataInputRefs = new ArrayList<>(otherSpec.getDataInputRefs());
    dataOutputRefs = new ArrayList<>(otherSpec.getDataOutputRefs());
  }
}
origin: org.flowable/flowable-bpmn-converter

String dataOutputRefs = xtr.getElementText();
if (StringUtils.isNotEmpty(dataOutputRefs)) {
  ioSpecification.getDataOutputRefs().add(dataOutputRefs.trim());
origin: org.flowable/flowable-engine

if (ioSpecification != null && ioSpecification.getDataOutputRefs().size() > 0) {
  String firstDataOutputName = ioSpecification.getDataOutputRefs().get(0);
  if (firstDataOutputName != null) {
    ItemInstance outputItem = (ItemInstance) execution.getTransientVariable(firstDataOutputName);
origin: org.flowable/flowable5-engine

protected IOSpecification createIOSpecification(BpmnParse bpmnParse, org.flowable.bpmn.model.IOSpecification specificationModel) {
  IOSpecification ioSpecification = new IOSpecification();
  for (DataSpec dataInputElement : specificationModel.getDataInputs()) {
    ItemDefinition itemDefinition = bpmnParse.getItemDefinitions().get(dataInputElement.getItemSubjectRef());
    Data dataInput = new Data(bpmnParse.getTargetNamespace() + ":" + dataInputElement.getId(), dataInputElement.getId(), itemDefinition);
    ioSpecification.addInput(dataInput);
  }
  for (DataSpec dataOutputElement : specificationModel.getDataOutputs()) {
    ItemDefinition itemDefinition = bpmnParse.getItemDefinitions().get(dataOutputElement.getItemSubjectRef());
    Data dataOutput = new Data(bpmnParse.getTargetNamespace() + ":" + dataOutputElement.getId(), dataOutputElement.getId(), itemDefinition);
    ioSpecification.addOutput(dataOutput);
  }
  for (String dataInputRef : specificationModel.getDataInputRefs()) {
    DataRef dataRef = new DataRef(dataInputRef);
    ioSpecification.addInputRef(dataRef);
  }
  for (String dataOutputRef : specificationModel.getDataOutputRefs()) {
    DataRef dataRef = new DataRef(dataOutputRef);
    ioSpecification.addOutputRef(dataRef);
  }
  return ioSpecification;
}
org.flowable.bpmn.modelIOSpecificationgetDataOutputRefs

Popular methods of IOSpecification

  • getDataInputRefs
  • getDataInputs
  • getDataOutputs
  • <init>
  • clone
  • setValues

Popular in Java

  • Running tasks concurrently on multiple threads
  • notifyDataSetChanged (ArrayAdapter)
  • setRequestProperty (URLConnection)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top Vim 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