ExecutionMode (enum)

Whether interactions with the wrapper are actually passed onto the underlying domain object.

API

ExecutionMode.java
enum ExecutionMode {
  SKIP_RULE_VALIDATION     (1)
  SKIP_EXECUTION     (2)
}
1 SKIP_RULE_VALIDATION

Skip all business rules.

2 SKIP_EXECUTION

Skip actual execution.

Members

SKIP_RULE_VALIDATION

Skip all business rules.

SKIP_EXECUTION

Skip actual execution.

This is not supported for WrapperFactory#asyncWrap(Object, AsyncControl) ; instead just invoke WrapperFactory#wrap(Object, SyncControl) .