FileDocCategorySizeDatePackage
Dom4jProxyFactory.javaAPI DocHibernate 3.2.51272Fri Feb 03 15:15:20 GMT 2006org.hibernate.proxy.dom4j

Dom4jProxyFactory

public class Dom4jProxyFactory extends Object implements org.hibernate.proxy.ProxyFactory
Builds proxies for "dom4j" entity representations.
author
Steve Ebersole

Fields Summary
private String
entityName
Constructors Summary
Methods Summary
public org.hibernate.proxy.HibernateProxygetProxy(java.io.Serializable id, org.hibernate.engine.SessionImplementor session)
Create a new proxy

		return new Dom4jProxy( new Dom4jLazyInitializer( entityName, id, session ) );
	
public voidpostInstantiate(java.lang.String entityName, java.lang.Class persistentClass, java.util.Set interfaces, java.lang.reflect.Method getIdentifierMethod, java.lang.reflect.Method setIdentifierMethod, org.hibernate.type.AbstractComponentType componentIdType)
Called immediately after instantiation

		this.entityName = entityName;