org.hibernate.SessionBuilder.clearEventListeners()

Here are the examples of the java api org.hibernate.SessionBuilder.clearEventListeners() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : AbstractDelegatingSessionBuilder.java
with GNU General Public License v2.0
from lamsfoundation

@Override
public T clearEventListeners() {
    delegate.clearEventListeners();
    return getThis();
}