Annotation Interface ProcessVariableLocalTyped


@Qualifier @Retention(RUNTIME) @Documented public @interface ProcessVariableLocalTyped
Annotation for qualifying injection points such that local process variables are injected. Instead of a normal Java Object a TypedValue will be returned.
  • @Inject @ProcessVariableLocalTyped Object accountNumber
  • @Inject @ProcessVariableLocalTyped("accountNumber") Object account
In both cases, the local process variable with the name 'accountNumber' is injected as TypedValue. NOTE: injection points must be of type 'TypedValue'.

Since:
7.3
Author:
Michael Scholz, Roman Smirnov
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    The name of the local process variable to look up.
  • Element Details

    • value

      String value
      The name of the local process variable to look up. Defaults to the name of the annotated field or parameter
      Default:
      ""