public class

Cloneable

extends Object
java.lang.Object
   ↳ org.hibernate.util.Cloneable
Known Direct Subclasses

Class Overview

An object that is shallow-coneable

Summary

Public Constructors
Cloneable()
Public Methods
Object shallowCopy()
Essentially performs a shallow copy of this SessionEventListenerConfig instance; meaning the SessionEventListenerConfig itself is cloned, but the individual listeners are not cloned.
void validate()
Checks to ensure the SessionEventListenerConfig is fully configured (basically, that none of the listeners is null).
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Cloneable ()

Public Methods

public Object shallowCopy ()

Essentially performs a shallow copy of this SessionEventListenerConfig instance; meaning the SessionEventListenerConfig itself is cloned, but the individual listeners are not cloned.

Returns
  • The SessionEventListenerConfig shallow copy.

public void validate ()

Checks to ensure the SessionEventListenerConfig is fully configured (basically, that none of the listeners is null).

Throws
HibernateException If the SessionEventListenerConfig is not fully configured.