Interface | Description |
---|---|
HibernateEntityManagerEventListener |
Marker interface for handling listener duplication checking (to avoid multiple registrations).
|
Class | Description |
---|---|
JpaAutoFlushEventListener |
In JPA, it is the create operation that is cascaded to unmanaged entities at flush time (instead of the save-update
operation in Hibernate).
|
JpaDeleteEventListener |
Overrides the LifeCycle OnSave call to call the PreRemove operation
|
JpaFlushEntityEventListener |
Overrides the LifeCycle OnSave call to call the PreUpdate operation
|
JpaFlushEventListener |
In JPA, it is the create operation that is cascaded to unmanaged entities at flush time (instead of the
save-update operation in Hibernate).
|
JpaMergeEventListener |
Overrides the LifeCycle OnSave call to call the PrePersist operation
|
JpaPersistEventListener |
Overrides the LifeCycle OnSave call to call the PrePersist operation
|
JpaPersistOnFlushEventListener | |
JpaPostDeleteEventListener | |
JpaPostInsertEventListener | |
JpaPostLoadEventListener | |
JpaPostUpdateEventListener |
Implementation of the post update listeners.
|
JpaSaveEventListener |
Overrides the LifeCycle OnSave call to call the PrePersist operation
|
JpaSaveOrUpdateEventListener |
Overrides the LifeCycle OnSave call to call the PrePersist operation
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.