Package org.hibernate.event.spi
Interface ResolveNaturalIdEventListener
-
- All Superinterfaces:
java.io.Serializable
public interface ResolveNaturalIdEventListener extends java.io.Serializable
Defines the contract for handling of resolve natural id events generated from a session.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onResolveNaturalId(ResolveNaturalIdEvent event)
Handle the given resolve natural id event.
-
-
-
Method Detail
-
onResolveNaturalId
void onResolveNaturalId(ResolveNaturalIdEvent event) throws HibernateException
Handle the given resolve natural id event.- Parameters:
event
- The resolve natural id event to be handled.- Throws:
HibernateException
- Indicates a problem resolving natural id to primary key
-
-