T - The database object class for which this instance is a listener.public interface CacheListener<T extends Persistent>
| Modifier and Type | Method and Description | 
|---|---|
| void | addedObject(T om)Notify listener that an object has been added to the database | 
| List<Column> | getInterestedFields()Get the list of fields we are listening for | 
| void | refreshedObject(T om)Notify listener that an object has been modified | 
| void | removedObject(T om)Notify listener that an object has been removed from the database | 
void addedObject(T om)
om - the objectvoid refreshedObject(T om)
om - the objectvoid removedObject(T om)
om - the objectCopyright © 2000–2020 The Apache Software Foundation. All rights reserved.