Tabnine Logo
TaskService.setVariables
Code IndexAdd Tabnine to your IDE (free)

How to use
setVariables
method
in
org.jbpm.api.TaskService

Best Java code snippets using org.jbpm.api.TaskService.setVariables (Showing top 2 results out of 315)

origin: org.jbpm.jbpm4/jbpm-console-integration

public void completeTask(long taskId, Map data, String performingUser) {
 TaskService taskService = this.processEngine.get(TaskService.class);
 if (data != null)
  taskService.setVariables(Long.toString(taskId), data);
 taskService.completeTask(Long.toString(taskId));
}
origin: org.jbpm.jbpm4/jbpm-console-integration

public void completeTask(long taskId, String outcome, Map data, String performingUser) {
 TaskService taskService = this.processEngine.get(TaskService.class);
 if (data != null)
  taskService.setVariables(Long.toString(taskId), data);
 taskService.completeTask(Long.toString(taskId), outcome);
}
org.jbpm.apiTaskServicesetVariables

Popular methods of TaskService

  • completeTask
  • getTask
  • assignTask
  • findGroupTasks
  • findPersonalTasks
  • getOutcomes
  • getTaskParticipations

Popular in Java

  • Start an intent from android
  • getSystemService (Context)
  • scheduleAtFixedRate (Timer)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • Socket (java.net)
    Provides a client-side TCP socket.
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • JOptionPane (javax.swing)
  • Top Sublime Text 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