Uses of Class
net.sf.hibernate.CallbackException

Packages that use CallbackException
net.sf.hibernate   
 

Uses of CallbackException in net.sf.hibernate
 

Methods in net.sf.hibernate that throw CallbackException
 boolean Lifecycle.onSave(Session s)
          Called when an entity is saved.
 boolean Lifecycle.onUpdate(Session s)
          Called when an entity is passed to Session.update().
 boolean Lifecycle.onDelete(Session s)
          Called when an entity is deleted.
 boolean Interceptor.onLoad(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
          Called just before an object is initialized.
 boolean Interceptor.onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types)
          Called when an object is detected to be dirty, during a flush.
 boolean Interceptor.onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
          Called before an object is saved.
 void Interceptor.onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
          Called before an object is deleted.
 void Interceptor.preFlush(Iterator entities)
          Called before a flush
 void Interceptor.postFlush(Iterator entities)
          Called after a flush that actually ends in execution of the SQL statements required to synchronize in-memory state with the database.
 Object Interceptor.instantiate(Class clazz, Serializable id)
          Instantiate the entity class.