Hi Rob.
Long time, no see - everything is working nicely here ;)
But today I got another idea: Events for db-beans.
What I want to do is have a Entity bean, which has methods like this:
@OnPreSave
public void onPreSave() {
if ( x < y ) throw new IllegalStateException(....);
}
@OnLoaded
public void onLoaded() {
calculateDistances();
}
is there any way to do this yet?
best regards,
-erwin