Codota Logo
org.jbpm.ruleflow.core
Code IndexAdd Codota to your IDE (free)

How to use org.jbpm.ruleflow.core

Best Java code snippets using org.jbpm.ruleflow.core (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: kiegroup/jbpm

protected RuleFlowProcessFactory(String id) {
  RuleFlowProcess process = new RuleFlowProcess();
  process.setId(id);
  setNodeContainer(process);
}

origin: kiegroup/jbpm

public RuleFlowProcessFactory dynamic(boolean dynamic) {
  getRuleFlowProcess().setDynamic(dynamic);
  return this;
}
origin: kiegroup/jbpm

public RuleFlowProcessFactory globals(Map<String, String> globals) {
  getRuleFlowProcess().setGlobals(globals);
  return this;
}

origin: kiegroup/jbpm

public RuleFlowProcessFactory name(String name) {
  getRuleFlowProcess().setName(name);
  return this;
}
origin: kiegroup/jbpm

public RuleFlowProcessFactory packageName(String packageName) {
  getRuleFlowProcess().setPackageName(packageName);
  return this;
}
origin: kiegroup/jbpm

public List<Node> getEndNodes() {
  return getEndNodes(this.getNodes());
}
origin: kiegroup/jbpm

public List<Node> getStartNodes() {
  return getStartNodes(this.getNodes());
}
origin: kiegroup/jbpm

public RuleFlowProcessFactory version(String version) {
  getRuleFlowProcess().setVersion(version);
  return this;
}
origin: kiegroup/jbpm

public RuleFlowProcessFactory exceptionHandler(String exception, ExceptionHandler exceptionHandler) {
  getRuleFlowProcess().getExceptionScope().setExceptionHandler(exception, exceptionHandler);
  return this;
}

origin: kiegroup/jbpm

public RuleFlowProcessFactory variable(String name, DataType type) {
  return variable(name, type, null);
}

origin: kiegroup/jbpm

public RuleFlowProcessFactory functionImports(String... functionImports) {
  getRuleFlowProcess().setFunctionImports(Arrays.asList(functionImports));
  return this;
}

origin: kiegroup/jbpm

public ExceptionScope getExceptionScope() {
  return (ExceptionScope) getDefaultContext(ExceptionScope.EXCEPTION_SCOPE);
}
origin: kiegroup/jbpm

  public RuleFlowProcess getProcess() {
    return getRuleFlowProcess();
  }
}
origin: kiegroup/jbpm

protected RuleFlowProcess getRuleFlowProcess() {
  return (RuleFlowProcess) getNodeContainer();
}
origin: kiegroup/jbpm

protected NodeContainer createNodeContainer() {
  return new WorkflowProcessNodeContainer();
}
origin: kiegroup/jbpm

public static RuleFlowProcessFactory createProcess(String id) {
  return new RuleFlowProcessFactory(id);
}
origin: kiegroup/jbpm

public RuleFlowProcessFactory variable(String name, DataType type, String metaDataName, Object metaDataValue) {
  return variable(name, type, null, metaDataName, metaDataValue);
}

origin: kiegroup/jbpm

public CompensationScope getCompensationScope() {
  return (CompensationScope) getDefaultContext(CompensationScope.COMPENSATION_SCOPE);
}
origin: kiegroup/jbpm

public VariableScope getVariableScope() {
  return (VariableScope) getDefaultContext(VariableScope.VARIABLE_SCOPE);
}
origin: kiegroup/jbpm

public SwimlaneContext getSwimlaneContext() {
  return (SwimlaneContext) getDefaultContext(SwimlaneContext.SWIMLANE_SCOPE);
}
org.jbpm.ruleflow.core

Most used classes

  • RuleFlowProcess
  • RuleFlowProcessFactory
  • ActionNodeFactory
  • EndNodeFactory
  • StartNodeFactory
  • RuleFlowNodeContainerFactory,
  • BoundaryEventNodeFactory,
  • CompositeNodeFactory,
  • EventNodeFactory,
  • HumanTaskNodeFactory,
  • RuleFlowProcess$WorkflowProcessNodeContainer,
  • DynamicNodeFactory,
  • FaultNodeFactory,
  • ForEachNodeFactory,
  • JoinFactory,
  • MilestoneNodeFactory,
  • NodeFactory,
  • RuleSetNodeFactory,
  • SplitFactory
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now