@Qualifier @Retention(value=RUNTIME) @Documented public @interface ProcessVariable
@Inject @ProcessVariable Object accountNumber
@Inject @ProcessVariable("accountNumber") Object account
StartProcess
annotation:
@ProcessVariable
String accountNumber; // will be added as a process // variable to the 'billingProcess'@StartProcess("billingProcess")
public void startBillingProcess() { ... }
public abstract String value
Copyright © 2015. All rights reserved.