Hi Luciano,  I did not use the 'noNotification' parameter to generate static
data objects.
for example,  I have a static data object called 'User' which has a 'userId'
property , and following code snippet is the set method for the 'userId'
property.

public void setUserId(String newUserId)
 {
   String oldUserId = userId;
   userId = newUserId;
   if (isNotifying())
     notify(ChangeKind.SET, USER_ID, oldUserId, userId);
 }

protected boolean isNotifying()
 {
   return changeRecorder != null;
 }

protected SDOChangeRecorder changeRecorder;

Reply via email to