站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 1.2.9 API 文档英文版

AopProxyFactory (Spring Framework) - Spring Framework 1.2.9 API 文档英文版


org.springframework.aop.framework
Interface AopProxyFactory

All Known Implementing Classes:
DefaultAopProxyFactory

public interface AopProxyFactory

Interface to be implemented by objects that can create AOP proxies based on AdvisedSupport objects.

Proxies should observe the following contract:

Proxies may or may not allow advice changes to be made. If they do not permit advice changes (for example, because the configuration was frozen) a proxy should throw an AopConfigException on an attempted advice change.

Author:
Rod Johnson

Method Summary
 AopProxy createAopProxy(AdvisedSupport advisedSupport)
          Return an AopProxy for the given AdvisedSupport object.
 

Method Detail

createAopProxy

AopProxy createAopProxy(AdvisedSupport advisedSupport)
                        throws AopConfigException
Return an AopProxy for the given AdvisedSupport object.

Parameters:
advisedSupport - the AOP configuration
Returns:
an AOP proxy
Throws:
AopConfigException - if the configuration is invalid


Copyright (c) 2002-2007 The Spring Framework Project.