|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.aop.support.AbstractPointcutAdvisor
public abstract class AbstractPointcutAdvisor
Abstract base class for PointcutAdvisor
implementations. Can be subclassed for returning a specific pointcut/advice
or a freely configurable pointcut/advice.
Constructor Summary | |
---|---|
AbstractPointcutAdvisor()
|
Method Summary | |
---|---|
boolean |
equals(Object other)
|
Advice |
getAdvice()
Return the advice part of this aspect. |
int |
getOrder()
Return the order value of this object, higher value meaning greater in terms of sorting. |
int |
hashCode()
|
boolean |
isPerInstance()
Return whether this advice is associated with a particular instance (for example, creating a mixin) or shared with all instances of the advised class obtained from the same Spring bean factory. |
void |
setAdvice(Advice advice)
|
void |
setOrder(int order)
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.springframework.aop.PointcutAdvisor |
---|
getPointcut |
Constructor Detail |
---|
public AbstractPointcutAdvisor()
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).
public void setAdvice(Advice advice)
public Advice getAdvice()
Advisor
MethodInterceptor
,
BeforeAdvice
,
ThrowsAdvice
,
AfterReturningAdvice
public boolean isPerInstance()
Advisor
Note that this method is not currently used by the framework.
Typical Advisor implementations always return true
.
Use singleton/prototype bean definitions or appropriate programmatic
proxy creation to ensure that Advisors have the correct lifecycle model.
isPerInstance
in interface Advisor
public boolean equals(Object other)
public int hashCode()
public String toString()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |