For those playing the Hibernate3 home game, here's the Java Doc:
Quote:
evict
public void evict(Object object)
throws HibernateException
Remove this instance from the session cache. Changes to the instance will not be synchronized with the database. This operation cascades to associated instances if the association is mapped with cascade="evict".
Parameters:
object - a persistent instance
Throws:
HibernateException
http://www.hibernate.org/hib_docs/v3/api/org/hibernate/Session.html#evict(java.lang.Object)