org.camunda.bpm.engine.cdi
Interface BusinessProcessEventType

All Known Implementing Classes:
BusinessProcessEventType.DefaultBusinessProcessEventType

public interface BusinessProcessEventType

The type of a business process event. Indicates what is happening/has happened, i.e. whether a transition is taken, an activity is entered or left, a task is created, assigned, completed or deleted.

Author:
Daniel Meyer

Nested Class Summary
static class BusinessProcessEventType.DefaultBusinessProcessEventType
           
 
Field Summary
static BusinessProcessEventType ASSIGN_TASK
          Signifies that a task is assigned
static BusinessProcessEventType COMPLETE_TASK
          Signifies that a task is completed
static BusinessProcessEventType CREATE_TASK
          Signifies that a task is created
static BusinessProcessEventType DELETE_TASK
          Signifies that a task is deleted
static BusinessProcessEventType END_ACTIVITY
          Signifies that an activity is being left / was left
static BusinessProcessEventType START_ACTIVITY
          Signifies that an activity is being entered / war entered
static BusinessProcessEventType TAKE
          Signifies that a transition is being taken / was taken
 
Method Summary
 String getTypeName()
           
 

Field Detail

TAKE

static final BusinessProcessEventType TAKE
Signifies that a transition is being taken / was taken


START_ACTIVITY

static final BusinessProcessEventType START_ACTIVITY
Signifies that an activity is being entered / war entered


END_ACTIVITY

static final BusinessProcessEventType END_ACTIVITY
Signifies that an activity is being left / was left


CREATE_TASK

static final BusinessProcessEventType CREATE_TASK
Signifies that a task is created


ASSIGN_TASK

static final BusinessProcessEventType ASSIGN_TASK
Signifies that a task is assigned


COMPLETE_TASK

static final BusinessProcessEventType COMPLETE_TASK
Signifies that a task is completed


DELETE_TASK

static final BusinessProcessEventType DELETE_TASK
Signifies that a task is deleted

Method Detail

getTypeName

String getTypeName()


Copyright © 2016 camunda services GmbH. All rights reserved.