com.tivoli.twg.engine
Interface TWGConObjectListener


public interface TWGConObjectListener

Notification interface for TWGConObject changes (adds, modifies, and deletes.


Method Summary
 void BeginNotificationSet()
          Start of notification set : this method is called just before a group of adds, modifies, and deletes are passed to their respective interfaces
 void CreateObjectNotify(TWGConObject obj)
          Method for notify of object create
 void DeleteObjectNotify(long oid)
          Method for notify an object delete
 void EndNotificationSet()
          End of notification set : this method is called just after the last notification in a set has been done.
 void ModifiedObjectNotify(TWGConObject obj)
          Method for notify of object modifies
 

Method Detail

BeginNotificationSet

public void BeginNotificationSet()
Start of notification set : this method is called just before a group of adds, modifies, and deletes are passed to their respective interfaces


DeleteObjectNotify

public void DeleteObjectNotify(long oid)
Method for notify an object delete

Parameters:
oid - - object ID of the deleted object

CreateObjectNotify

public void CreateObjectNotify(TWGConObject obj)
Method for notify of object create

Parameters:
obj - - TWGConObject reference to newly created object

ModifiedObjectNotify

public void ModifiedObjectNotify(TWGConObject obj)
Method for notify of object modifies

Parameters:
obj - - TWGConObject reference to newly changed object

EndNotificationSet

public void EndNotificationSet()
End of notification set : this method is called just after the last notification in a set has been done.