java.lang.Objectorg.springframework.aop.framework.ProxyConfig
org.springframework.aop.framework.AdvisedSupport
org.springframework.aop.framework.ProxyCreatorSupport
org.springframework.aop.framework.ProxyFactory
All Implemented Interfaces:
AopProxy, Advised, Serializable
Rod - JohnsonJuergen - HoellerRob - Harrop14.03.2003 - | Fields inherited from org.springframework.aop.framework.AdvisedSupport: |
|---|
| EMPTY_TARGET_SOURCE, targetSource, advisorChainFactory |
| Fields inherited from org.springframework.aop.framework.ProxyConfig: |
|---|
| opaque, exposeProxy |
| Constructor: |
|---|
|
Will proxy all interfaces that the given target implements.
|
No target, only interfaces. Must add interceptors.
|
Convenience method for creating a proxy for a single interceptor, assuming that the interceptor handles all calls itself rather than delegating to a target, like in the case of remoting proxies.
|
TargetSource,
making the proxy implement the specified interface.
|
| Method from org.springframework.aop.framework.ProxyFactory Summary: |
|---|
| getProxy, getProxy, getProxy, getProxy, getProxy |
| Methods from org.springframework.aop.framework.ProxyCreatorSupport: |
|---|
| addListener, adviceChanged, createAopProxy, getAopProxyFactory, isActive, removeListener, setAopProxyFactory |
| Methods from org.springframework.aop.framework.ProxyConfig: |
|---|
| copyFrom, isExposeProxy, isFrozen, isOpaque, isOptimize, isProxyTargetClass, setExposeProxy, setFrozen, setOpaque, setOptimize, setProxyTargetClass, toString |
| Methods from java.lang.Object: |
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.springframework.aop.framework.ProxyFactory Detail: |
|---|
Can be called repeatedly. Effect will vary if we've added or removed interfaces. Can add and remove interceptors. Uses a default class loader: Usually, the thread context class loader (if necessary for proxy creation). |
Can be called repeatedly. Effect will vary if we've added or removed interfaces. Can add and remove interceptors. Uses the given class loader (if necessary for proxy creation). |
TargetSource that extends
the target class of the TargetSource. |
Convenience method for creating a proxy for a single interceptor, assuming that the interceptor handles all calls itself rather than delegating to a target, like in the case of remoting proxies. |
TargetSource,
implementing the specified interface. |