We have a requirement to implement global security rules while mapping. We need to skip mapping certain fields based on runtime security constraints.
if we can do something similar to the following, it will greatly simply our implementation.
public void preWritingDestinationValue(DozerEvent event) {
...our code
event.skip();
}