|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.aop.support.StaticMethodMatcher
org.springframework.aop.support.StaticMethodMatcherPointcut
org.springframework.aop.support.StaticMethodMatcherPointcutAdvisor
public abstract class StaticMethodMatcherPointcutAdvisor
Convenient base class for Advisors that are also static pointcuts. Serializable if Advice and subclass are.
| Field Summary | |
|---|---|
private Advice |
advice
|
private int |
order
|
| Fields inherited from interface org.springframework.core.Ordered |
|---|
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE |
| Fields inherited from interface org.springframework.aop.Pointcut |
|---|
TRUE |
| Fields inherited from interface org.springframework.aop.MethodMatcher |
|---|
TRUE |
| Constructor Summary | |
|---|---|
StaticMethodMatcherPointcutAdvisor()
Create a new StaticMethodMatcherPointcutAdvisor, expecting bean-style configuration. |
|
StaticMethodMatcherPointcutAdvisor(Advice advice)
Create a new StaticMethodMatcherPointcutAdvisor for the given advice. |
|
| Method Summary | |
|---|---|
Advice |
getAdvice()
Return the advice part of this aspect. |
int |
getOrder()
Return the order value of this object, with a higher value meaning greater in terms of sorting. |
Pointcut |
getPointcut()
Get the Pointcut that drives this advisor. |
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)
|
| Methods inherited from class org.springframework.aop.support.StaticMethodMatcherPointcut |
|---|
getClassFilter, getMethodMatcher, setClassFilter |
| Methods inherited from class org.springframework.aop.support.StaticMethodMatcher |
|---|
isRuntime, matches |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.springframework.aop.MethodMatcher |
|---|
matches |
| Field Detail |
|---|
private int order
private Advice advice
| Constructor Detail |
|---|
public StaticMethodMatcherPointcutAdvisor()
setAdvice(Advice)public StaticMethodMatcherPointcutAdvisor(Advice advice)
advice - the Advice to use| Method Detail |
|---|
public void setOrder(int order)
public int getOrder()
OrderedNormally starting with 0, with Integer.MAX_VALUE
indicating the greatest value. Same order values will result
in arbitrary positions for the affected objects.
Higher values can be interpreted as lower priority. As a consequence, the object with the lowest value has highest priority (somewhat analogous to Servlet "load-on-startup" values).
getOrder in interface Orderedpublic void setAdvice(Advice advice)
public Advice getAdvice()
Advisor
getAdvice in interface Advisororg.aopalliance.intercept.MethodInterceptor,
BeforeAdvice,
ThrowsAdvice,
AfterReturningAdvicepublic boolean isPerInstance()
AdvisorNote 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 Advisorpublic Pointcut getPointcut()
PointcutAdvisor
getPointcut in interface PointcutAdvisor
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||