|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.aop.support.DefaultIntroductionAdvisor
Simple IntroductionAdvisor implementation that by default applies to any class.
Field Summary |
Fields inherited from interface org.springframework.aop.ClassFilter |
TRUE |
Constructor Summary | |
DefaultIntroductionAdvisor(Advice advice)
|
|
DefaultIntroductionAdvisor(Advice advice,
IntroductionInfo introductionInfo)
Wrap the given interceptor and introduce all interfaces. |
|
DefaultIntroductionAdvisor(DynamicIntroductionAdvice advice,
Class clazz)
|
Method Summary | |
void |
addInterface(Class intf)
|
Advice |
getAdvice()
Return the advice part of this aspect. |
ClassFilter |
getClassFilter()
Return the filter determining which target classes this introduction should apply to. |
Class[] |
getInterfaces()
Return the additional interfaces introduced by this Advisor or Advice. |
int |
getOrder()
Return the order value of this object, higher value meaning greater in terms of sorting. |
boolean |
isPerInstance()
Default for an introduction is per-instance interception. |
boolean |
matches(Class clazz)
Should the pointcut apply to the given interface or target class? |
void |
setOrder(int order)
|
String |
toString()
|
void |
validateInterfaces()
Can the advised interfaces be implemented by the introduction advice? |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public DefaultIntroductionAdvisor(Advice advice)
public DefaultIntroductionAdvisor(DynamicIntroductionAdvice advice, Class clazz)
public DefaultIntroductionAdvisor(Advice advice, IntroductionInfo introductionInfo)
Method Detail |
public void setOrder(int order)
public int getOrder()
Ordered
Higher value can be interpreted as lower priority, consequently the first object has highest priority (somewhat analogous to Servlet "load-on-startup" values).
getOrder
in interface Ordered
public void addInterface(Class intf)
public ClassFilter getClassFilter()
IntroductionAdvisor
getClassFilter
in interface IntroductionAdvisor
public Advice getAdvice()
Advisor
getAdvice
in interface Advisor
MethodInterceptor
,
BeforeAdvice
,
ThrowsAdvice
,
AfterReturningAdvice
public Class[] getInterfaces()
IntroductionInfo
getInterfaces
in interface IntroductionInfo
public boolean matches(Class clazz)
ClassFilter
matches
in interface ClassFilter
clazz
- candidate target class
public boolean isPerInstance()
isPerInstance
in interface Advisor
public void validateInterfaces() throws IllegalArgumentException
IntroductionAdvisor
validateInterfaces
in interface IntroductionAdvisor
IllegalArgumentException
- if the advised interfaces can't be
implemented by the introduction advice.public String toString()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |