* Is executed when a field has become dirty.
*
* @param joinPoint the current join point
*/
public void execute(final JoinPoint joinPoint) {
FieldJoinPoint jp = (FieldJoinPoint)joinPoint;
try {
s_persistenceManager.store(jp.getTargetInstance());
}
catch (PersistenceManagerException e) {
throw new WrappedRuntimeException(e);
}
}