类 ProxyFactoryFactoryImpl
- java.lang.Object
-
- org.hibernate.bytecode.internal.javassist.ProxyFactoryFactoryImpl
-
- 所有已实现的接口:
Serializable,ProxyFactoryFactory,Service
public class ProxyFactoryFactoryImpl extends Object implements ProxyFactoryFactory
A factory for Javassist-basedProxyFactoryinstances.- 作者:
- Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 ProxyFactoryFactoryImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 BasicProxyFactorybuildBasicProxyFactory(Class superClass, Class[] interfaces)Constructs a BasicProxyFactoryImplProxyFactorybuildProxyFactory(SessionFactoryImplementor sessionFactory)Builds a Javassist-based proxy factory.
-
-
-
方法详细资料
-
buildProxyFactory
public ProxyFactory buildProxyFactory(SessionFactoryImplementor sessionFactory)
Builds a Javassist-based proxy factory.- 指定者:
buildProxyFactory在接口中ProxyFactoryFactory- 返回:
- a new Javassist-based proxy factory.
-
buildBasicProxyFactory
public BasicProxyFactory buildBasicProxyFactory(Class superClass, Class[] interfaces)
Constructs a BasicProxyFactoryImpl- 指定者:
buildBasicProxyFactory在接口中ProxyFactoryFactory- 参数:
superClass- The abstract super class (or null if none).interfaces- Interfaces to be proxied (or null if none).- 返回:
- The constructed BasicProxyFactoryImpl
-
-