Save This Page
Home » spring-framework-2.5.5-with-dependencies » org.springframework » aop » framework » [javadoc | source]
org.springframework.aop.framework
public interface: AopProxyFactory [javadoc | source]

All Known Implementing Classes:
    DefaultAopProxyFactory

Interface to be implemented by factories that are able to create AOP proxies based on AdvisedSupport configuration 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.

Method from org.springframework.aop.framework.AopProxyFactory Summary:
createAopProxy
Method from org.springframework.aop.framework.AopProxyFactory Detail:
 public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException
    Create an AopProxy for the given AOP configuration.