atg.process.action
Interface ActionConstants

All Known Implementing Classes:
ActionException

public interface ActionConstants

Action-related constants.


Field Summary
static java.lang.String CLASS_VERSION
           
static int ERROR_RESPONSE_CONTINUE
          If an action error occurs, ignore it and continue with the process instance(s)
static int ERROR_RESPONSE_DEFAULT
          If an action error occurs, respond in the default way, as specified in the action registry
static int ERROR_RESPONSE_DELETE
          If an action error occurs, delete the process instance(s)
static int ERROR_RESPONSE_INSTANCE_DELETED
          Used in the case where the process instance(s) (and possibly the subject) get deleted by the action; the process engine will abort execution immediately
static int ERROR_RESPONSE_RETRY
          If an action error occurs, leave the process instance(s) in the old state
static int EXECUTION_POLICY_COLLECTIVE
          Action can be executed on a collective process instance
static int EXECUTION_POLICY_INDIVIDUAL
          Action requires an individual process instance to execute
 

Field Detail

CLASS_VERSION

static final java.lang.String CLASS_VERSION
See Also:
Constant Field Values

EXECUTION_POLICY_INDIVIDUAL

static final int EXECUTION_POLICY_INDIVIDUAL
Action requires an individual process instance to execute

See Also:
Constant Field Values

EXECUTION_POLICY_COLLECTIVE

static final int EXECUTION_POLICY_COLLECTIVE
Action can be executed on a collective process instance

See Also:
Constant Field Values

ERROR_RESPONSE_DEFAULT

static final int ERROR_RESPONSE_DEFAULT
If an action error occurs, respond in the default way, as specified in the action registry

See Also:
Constant Field Values

ERROR_RESPONSE_CONTINUE

static final int ERROR_RESPONSE_CONTINUE
If an action error occurs, ignore it and continue with the process instance(s)

See Also:
Constant Field Values

ERROR_RESPONSE_DELETE

static final int ERROR_RESPONSE_DELETE
If an action error occurs, delete the process instance(s)

See Also:
Constant Field Values

ERROR_RESPONSE_RETRY

static final int ERROR_RESPONSE_RETRY
If an action error occurs, leave the process instance(s) in the old state

See Also:
Constant Field Values

ERROR_RESPONSE_INSTANCE_DELETED

static final int ERROR_RESPONSE_INSTANCE_DELETED
Used in the case where the process instance(s) (and possibly the subject) get deleted by the action; the process engine will abort execution immediately

See Also:
Constant Field Values