// written.
SecurityChecker.getInstance().checkWriteAccess(o);
return;
}
final Traceable t = (Traceable) o;
if (t.getCreatedBy() == null) { // new
onNew(t, propertyNames, currentState);
} else {
onUpdate(t, propertyNames, currentState);
}
} catch (Exception e) {