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

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

Introduction

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

The text is from its open source code.

Implementation

org.springframework.aop.framework.Advised has the following implementations.
Click this link to see all its implementation.

Method

voidaddAdvice(Advice advice)
Add the given AOP Alliance advice to the tail of the advice (interceptor) chain.
voidaddAdvisor(Advisor advisor)
Add an advisor at the end of the advisor chain.
Advisor[]getAdvisors()
Return the advisors applying to this proxy.
ClassgetClass()
Returns the runtime class of this Object .
ClassgetTargetClass()
Return the target class behind the implementing object (typically a proxy configuration or an actual proxy).
TargetSourcegetTargetSource()
Return the TargetSource used by this Advised object.
intindexOf(Advisor advisor)
Return the index (from 0) of the given advisor, or -1 if no such advisor applies to this proxy.
intindexOf(Advice advice)
Return the index (from 0) of the given AOP Alliance Advice, or -1 if no such advice is an advice for this proxy.
booleanremoveAdvice(Advice advice)
Remove the Advisor containing the given advice.
booleanremoveAdvisor(Advisor advisor)
Remove the given advisor.
voidremoveAdvisor(int index)
Remove the advisor at the given index.
voidsetTargetSource(TargetSource targetSource)
Change the TargetSource used by this Advised object.