|
|||||||||
| Home >> All >> org >> hibernate >> [ bytecode overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.hibernate.bytecode
Interface ProxyFactoryFactory

- public interface ProxyFactoryFactory
An interface for factories of proxy factory instances.
Currently used to abstract from the tupizer whether we are using CGLIB or Javassist for lazy proxy generation.
| Method Summary | |
BasicProxyFactory |
buildBasicProxyFactory(java.lang.Class superClass,
java.lang.Class[] interfaces)
Build a proxy factory for basic proxy concerns. |
org.hibernate.proxy.ProxyFactory |
buildProxyFactory()
Build a proxy factory specifically for handling runtime lazy loading. |
| Method Detail |
buildProxyFactory
public org.hibernate.proxy.ProxyFactory buildProxyFactory()
- Build a proxy factory specifically for handling runtime
lazy loading.
buildBasicProxyFactory
public BasicProxyFactory buildBasicProxyFactory(java.lang.Class superClass, java.lang.Class[] interfaces)
- Build a proxy factory for basic proxy concerns. The return
should be capable of properly handling newInstance() calls.
Should build basic proxies essentially equivalent to JDK proxies in
terms of capabilities, but should be able to deal with abstract super
classes in addition to proxy interfaces.
Must pass in either superClass or interfaces (or both).
|
|||||||||
| Home >> All >> org >> hibernate >> [ bytecode overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC