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

How to use
getInMappings
method
in
org.jbpm.workflow.core.node.RuleSetNode

Best Java code snippets using org.jbpm.workflow.core.node.RuleSetNode.getInMappings (Showing top 4 results out of 315)

origin: kiegroup/jbpm

public String getInMapping(String parameterName) {
  return getInMappings().get(parameterName);
}

origin: kiegroup/jbpm

protected void writeIO(RuleSetNode ruleSetNode, StringBuilder xmlDump) {
  xmlDump.append("      <ioSpecification>" + EOL);
  for (Map.Entry<String, String> entry: ruleSetNode.getInMappings().entrySet()) {
    xmlDump.append("        <dataInput id=\"" + XmlBPMNProcessDumper.getUniqueNodeId(ruleSetNode) + "_" + XmlBPMNProcessDumper.replaceIllegalCharsAttribute(entry.getKey()) + "Input\" name=\"" + XmlBPMNProcessDumper.replaceIllegalCharsAttribute(entry.getKey()) + "\" />" + EOL);
  for (Map.Entry<String, String> entry: ruleSetNode.getInMappings().entrySet()) {
    xmlDump.append("          <dataInputRefs>" + XmlBPMNProcessDumper.getUniqueNodeId(ruleSetNode) + "_" + XmlDumper.replaceIllegalChars(entry.getKey()) + "Input</dataInputRefs>" + EOL);
  xmlDump.append(
    "      </ioSpecification>" + EOL);
  for (Map.Entry<String, String> entry: ruleSetNode.getInMappings().entrySet()) {
    xmlDump.append("      <dataInputAssociation>" + EOL);
    xmlDump.append(
origin: org.jbpm/jbpm-flow

public String getInMapping(String parameterName) {
  return getInMappings().get(parameterName);
}

origin: org.jbpm/jbpm-bpmn2

protected void writeIO(RuleSetNode ruleSetNode, StringBuilder xmlDump) {
  xmlDump.append("      <ioSpecification>" + EOL);
  for (Map.Entry<String, String> entry: ruleSetNode.getInMappings().entrySet()) {
    xmlDump.append("        <dataInput id=\"" + XmlBPMNProcessDumper.getUniqueNodeId(ruleSetNode) + "_" + XmlBPMNProcessDumper.replaceIllegalCharsAttribute(entry.getKey()) + "Input\" name=\"" + XmlBPMNProcessDumper.replaceIllegalCharsAttribute(entry.getKey()) + "\" />" + EOL);
  for (Map.Entry<String, String> entry: ruleSetNode.getInMappings().entrySet()) {
    xmlDump.append("          <dataInputRefs>" + XmlBPMNProcessDumper.getUniqueNodeId(ruleSetNode) + "_" + XmlDumper.replaceIllegalChars(entry.getKey()) + "Input</dataInputRefs>" + EOL);
  xmlDump.append(
    "      </ioSpecification>" + EOL);
  for (Map.Entry<String, String> entry: ruleSetNode.getInMappings().entrySet()) {
    xmlDump.append("      <dataInputAssociation>" + EOL);
    xmlDump.append(
org.jbpm.workflow.core.nodeRuleSetNodegetInMappings

Popular methods of RuleSetNode

  • getRuleFlowGroup
  • <init>
  • setRuleFlowGroup
  • getInAssociations
  • getLanguage
  • getOutAssociations
  • addInAssociation
  • addOutAssociation
  • addTimer
  • getDecision
  • getModel
  • getName
  • getModel,
  • getName,
  • getNamespace,
  • getOutMappings,
  • getParameters,
  • getTimers,
  • removeParameter,
  • setDecision,
  • setLanguage

Popular in Java

  • Creating JSON documents from java classes using gson
  • setScale (BigDecimal)
  • getSharedPreferences (Context)
  • setRequestProperty (URLConnection)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top plugins for Android Studio
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