All Implemented Interfaces:
TargetClassAware
All Known Implementing Classes:
ProxyFactoryBean, AspectJProxyFactory, ProxyFactory, AdvisedSupport, ProxyCreatorSupport
Any AOP proxy obtained from Spring can be cast to this interface to allow manipulation of its AOP advice.
Rod - JohnsonJuergen - Hoeller13.03.2003 - | Method from org.springframework.aop.framework.Advised Summary: |
|---|
| addAdvice, addAdvice, addAdvisor, addAdvisor, getAdvisors, getProxiedInterfaces, getTargetSource, indexOf, indexOf, isExposeProxy, isFrozen, isInterfaceProxied, isPreFiltered, isProxyTargetClass, removeAdvice, removeAdvisor, removeAdvisor, replaceAdvisor, setExposeProxy, setPreFiltered, setTargetSource, toProxyConfigString |
| Method from org.springframework.aop.framework.Advised Detail: |
|---|
This will be wrapped in a DefaultPointcutAdvisor with a pointcut that always
applies, and returned from the Note that the given advice will apply to all invocations on the proxy,
even to the |
This will be wrapped in a org.springframework.aop.support.DefaultPointcutAdvisor with a pointcut that always applies, and returned from the #getAdvisors() method in this wrapped form. Note: The given advice will apply to all invocations on the proxy,
even to the |
The Advisor may be an org.springframework.aop.IntroductionAdvisor , in which new interfaces will be available when a proxy is next obtained from the relevant factory. |
|
|
|
|
The return value of this method can be used to index into the advisors array. |
The return value of this method can be used to index into the advisors array. |
this no advice
will apply.) Getting the proxy is analogous to an EJB calling getEJBObject(). |
|
|
|
|
|
|
|
Note: If the advisor is an org.springframework.aop.IntroductionAdvisor and the replacement is not or implements different interfaces, the proxy will need to be re-obtained or the old interfaces won't be supported and the new interface won't be implemented. |
this, the invocation will not be advised).
Default is "false", for optimal performance. |
Default is "false". Set this to "true" if the advisors have been pre-filtered already, meaning that the ClassFilter check can be skipped when building the actual advisor chain for proxy invocations. |
|
toString() will normally be delegated to the target,
this returns the equivalent for the AOP proxy. |