Java org.springframework.aop.framework AdvisedSupport fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.aop.framework AdvisedSupport fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.aop.framework AdvisedSupport.

The text is from its open source code.

Field

TargetSourceEMPTY_TARGET_SOURCE
Canonical TargetSource when there's no target, and behavior is supplied by the advisors.

Constructor

AdvisedSupport()
No-arg constructor for use as a JavaBean.

Method

voidaddAdvice(Advice advice)
voidaddAdvisors(Advisor... advisors)
Add all of the given advisors to this proxy configuration.
voidaddAdvisors(Collection advisors)
Add all of the given advisors to this proxy configuration.
voidcopyConfigurationFrom(AdvisedSupport other)
Call this method on a new instance created by the no-arg constructor to create an independent copy of the configuration from the given object.
AdvisorChainFactorygetAdvisorChainFactory()
Return the advisor chain factory to use (never null ).
Advisor[]getAdvisors()
Class[]getProxiedInterfaces()
TargetSourcegetTargetSource()
booleanisExposeProxy()
Return whether the AOP proxy will expose the AOP proxy for each invocation.
booleanisOptimize()
Return whether proxies should perform aggressive optimizations.
booleanisProxyTargetClass()
Return whether to proxy the target class directly as well as any interfaces.
voidsetTarget(Object target)
Set the given object as target.