properties.put("location.42", new String[]{ "example" });
DummyLogDomain logService = new DummyLogDomain();
getBundleContext().registerService(clazzes, logService, properties);
LogEvent e = new LogEvent();
e.setName("42");
ExampleDomainEvents exampleEvents = getOsgiService(ExampleDomainEvents.class);
// this should be routed through the domain, which forwards it to the workflow service
exampleEvents.raiseEvent(e);