kora icon indicating copy to clipboard operation
kora copied to clipboard

Camunda 7

Open GoodforGod opened this issue 1 year ago • 1 comments

  • Camunda 7 Engine module added
  • Camunda 7 Rest Undertow module added
@Component
public final class LoggerDelegate implements JavaDelegate {

    private static final Logger logger = LoggerFactory.getLogger(LoggerDelegate.class);

    @Override
    public void execute(DelegateExecution delegateExecution) {
        logger.info("Hello World: {}", delegateExecution);
    }
}

And

@Component
public final class LoggerDelegate implements KoraDelegate {

    private static final Logger logger = LoggerFactory.getLogger(LoggerDelegate.class);

    @Override
    public String key() {
        return "my-delegate-key";
    }

    @Override
    public void execute(DelegateExecution delegateExecution) {
        logger.info("Hello World: {}", delegateExecution);
    }
}

GoodforGod avatar Apr 15 '24 08:04 GoodforGod

Test Results

607 tests   603 :white_check_mark:  7m 38s :stopwatch:  85 suites    4 :zzz:  85 files      0 :x:

Results for commit 1a23095b.

:recycle: This comment has been updated with latest results.

github-actions[bot] avatar Apr 15 '24 08:04 github-actions[bot]