| java.lang.Object org.springframework.aop.framework.AopProxyUtils
equalsInProxy | public static boolean equalsInProxy(AdvisedSupport a, AdvisedSupport b)(Code) | | Check equality of the proxies behind the given AdvisedSupport objects.
Not the same as equality of the AdvisedSupport objects:
rather, equality of interfaces, advisors and target sources.
|
equalsProxiedInterfaces | public static boolean equalsProxiedInterfaces(AdvisedSupport a, AdvisedSupport b)(Code) | | Check equality of the proxied interfaces behind the given AdvisedSupport objects.
|
getTargetClass | public static Class getTargetClass(Object candidate)(Code) | | Determine the target class of the given bean instance,
which might be an AOP proxy.
Returns the target class for an AOP proxy and the plain class else.
Parameters: candidate - the instance to check (might be an AOP proxy) the target class (or the plain class of the given object as fallback) See Also: org.springframework.aop.support.AopUtils.getTargetClass(Object) |
proxiedUserInterfaces | public static Class[] proxiedUserInterfaces(Object proxy)(Code) | | Extract the user-specified interfaces that the given proxy implements,
i.e. all non-Advised interfaces that the proxy implements.
Parameters: proxy - the proxy to analyze (usually a JDK dynamic proxy) all user-specified interfaces that the proxy implements,in the original order (never null or empty) See Also: Advised |
|
|