Annotation Type ExecutionId


  • @Qualifier
    @Retention(RUNTIME)
    @Target({FIELD,PARAMETER,METHOD,TYPE})
    public @interface ExecutionId
    Qualifier annotation for injecting the current executionId.

    Example:

     @Inject @ExecutionId String currentExecutionId
     
    Note that the current Execution is also available for injection:
     @Inject Execution execution;
     
    Author:
    Daniel Meyer