Codota Logo
HumanTaskActivityBehavior.getTask
Code IndexAdd Codota to your IDE (free)

How to use
getTask
method
in
org.camunda.bpm.engine.impl.cmmn.behavior.HumanTaskActivityBehavior

Best Java code snippets using org.camunda.bpm.engine.impl.cmmn.behavior.HumanTaskActivityBehavior.getTask (Showing top 6 results out of 315)

  • Common ways to obtain HumanTaskActivityBehavior
private void myMethod () {
HumanTaskActivityBehavior h =
  • Codota IconCmmnActivity activity;(HumanTaskActivityBehavior) activity.getActivityBehavior()
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

protected void completing(CmmnActivityExecution execution) {
 TaskEntity task = getTask(execution);
 if (task != null) {
  task.caseExecutionCompleted();
 }
}
origin: camunda/camunda-bpm-platform

protected void terminating(CmmnActivityExecution execution) {
 TaskEntity task = getTask(execution);
 // it can happen that a there does not exist
 // a task, because the given execution was never
 // active.
 if (task != null) {
  task.delete("terminated", false);
 }
}
origin: camunda/camunda-bpm-platform

protected void completing(CmmnActivityExecution execution) {
 TaskEntity task = getTask(execution);
 if (task != null) {
  task.caseExecutionCompleted();
 }
}
origin: camunda/camunda-bpm-platform

protected void terminating(CmmnActivityExecution execution) {
 TaskEntity task = getTask(execution);
 // it can happen that a there does not exist
 // a task, because the given execution was never
 // active.
 if (task != null) {
  task.delete("terminated", false);
 }
}
origin: org.camunda.bpm/camunda-engine

protected void terminating(CmmnActivityExecution execution) {
 TaskEntity task = getTask(execution);
 // it can happen that a there does not exist
 // a task, because the given execution was never
 // active.
 if (task != null) {
  task.delete("terminated", false);
 }
}
origin: org.camunda.bpm/camunda-engine

protected void completing(CmmnActivityExecution execution) {
 TaskEntity task = getTask(execution);
 if (task != null) {
  task.caseExecutionCompleted();
 }
}
org.camunda.bpm.engine.impl.cmmn.behaviorHumanTaskActivityBehaviorgetTask

Popular methods of HumanTaskActivityBehavior

  • <init>
  • completing
  • getTaskDefinition
  • setTaskDecorator
  • terminating
  • getExpressionManager
  • getTaskDecorator

Popular in Java

  • Reading from database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • onCreateOptionsMenu (Activity)
  • getExternalFilesDir (Context)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • JFileChooser (javax.swing)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.This exception may include information for locating the er
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