Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Framework
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30174
Modified Files:
ProxyConfig.cs
Log Message:
SPRNET-720 - Change ObjectNameAutoProxyCreator default behavior to proxy the product of a IFactoryObject and not the IFactoryObject itself
SPRNET-721 - Intercept all target interfaces when using an introduction with ObjectNameAutoProxyCreator
Index: ProxyConfig.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Framework/ProxyConfig.cs,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** ProxyConfig.cs 2 Aug 2007 04:15:20 -0000 1.12
--- ProxyConfig.cs 7 Sep 2007 01:51:49 -0000 1.13
***************
*** 192,201 ****
AssertUtils.ArgumentNotNull(otherConfiguration, "otherConfiguration");
! this.optimize = otherConfiguration.Optimize;
! this.proxyTargetType = otherConfiguration.ProxyTargetType;
! this.proxyTargetAttributes = otherConfiguration.ProxyTargetAttributes;
! this.exposeProxy = otherConfiguration.ExposeProxy;
! this.frozen = otherConfiguration.IsFrozen;
! this.aopProxyFactory = otherConfiguration.AopProxyFactory;
}
--- 192,201 ----
AssertUtils.ArgumentNotNull(otherConfiguration, "otherConfiguration");
! this.optimize = otherConfiguration.optimize;
! this.proxyTargetType = otherConfiguration.proxyTargetType;
! this.proxyTargetAttributes = otherConfiguration.proxyTargetAttributes;
! this.exposeProxy = otherConfiguration.exposeProxy;
! this.frozen = otherConfiguration.frozen;
! this.aopProxyFactory = otherConfiguration.aopProxyFactory;
}
|