Hi,

I've registered a property domain event for some property for which the setter is called by an action (exposed in the wicket viewer) calling another service that eventually calls the setter. The subscriber doesn't catch the property event.

EntityA.actionA(){
    service.methodX();
}

Service.methodX(){
    EntityB.setPropertyWithRegisteredEvent('foo');
}

EntityB.setPropertyWithRegisteredEvent(String bar){

}

Am I doing something wrong or is this behaviour as designed? Wrapping the setter-calling entity using wrapper factory does the trick. Is this necessary and at what level should I do the wrapping?

Erik

Reply via email to