<p><pre><code> logger.info("...");
</code></pre>
versus:<p><pre><code> EventHandle eh = EBus.getHandle(
eventBuilder.executing().name("some operation").build());
if (eh.isAllowed()) {
eh.addParam("p1","v1").addParam("p2","v2").post();
}
</code></pre>
That's a lot of typing.<p>It needs a more compact API.