Chapter 5, Basic O/R Mapping of hibernate DOCs says: at section 5.1.3. Class
You can declare a persistent class using the class element. For example:
<class
...
proxy="ProxyInterface" (7)
...
/>
with the short comment:
proxy (optional): specifies an interface to use for lazy initializing proxies. You can specify the name of the class itself.
Is there any example, specification, or a little more explanation of this interface usage?