Skip to content

Commit

Permalink
✨ (#217): Yeah, the process compiles!
Browse files Browse the repository at this point in the history
  • Loading branch information
d135-1r43 committed Jan 3, 2025
1 parent fb49e2c commit b1dc7c3
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 63 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package app.hopps.fin.delegates;

import jakarta.enterprise.context.ApplicationScoped;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Use this if you need to bind an arbitrary delegate to a service task in BPMN
*/
@ApplicationScoped
public class NoopDelegate {

private static final Logger LOG = LoggerFactory.getLogger(NoopDelegate.class);

public void noop() {
LOG.info("no op");
}
}
Loading

0 comments on commit b1dc7c3

Please sign in to comment.