org.hibernate.event

Interface EvictEventListener

All Superinterfaces:
Serializable
Known Implementing Classes:
DefaultEvictEventListener

public interface EvictEventListener
extends Serializable

Defines the contract for handling of evict events generated from a session.
Author:
Steve Ebersole

Method Summary

void
onEvict(EvictEvent event)
Handle the given evict event.

Method Details

onEvict

public void onEvict(EvictEvent event)
            throws HibernateException
Handle the given evict event.
Parameters:
event - The evict event to be handled.