Interface AspectJPrecedenceInformation
- All Superinterfaces:
- Ordered
- All Known Implementing Classes:
- AbstractAspectJAdvice,- AspectJAfterAdvice,- AspectJAfterReturningAdvice,- AspectJAfterThrowingAdvice,- AspectJAroundAdvice,- AspectJMethodBeforeAdvice
Interface to be implemented by types that can supply the information
 needed to sort advice/advisors by AspectJ's precedence rules.
- Since:
- 2.0
- Author:
- Adrian Colyer
- See Also:
- 
Field SummaryFields inherited from interface org.springframework.core.OrderedHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
- 
Method SummaryModifier and TypeMethodDescriptionReturn the name of the aspect (bean) in which the advice was declared.intReturn the declaration order of the advice member within the aspect.booleanReturn whether this is an after advice.booleanReturn whether this is a before advice.
- 
Method Details- 
getAspectNameString getAspectName()Return the name of the aspect (bean) in which the advice was declared.
- 
getDeclarationOrderint getDeclarationOrder()Return the declaration order of the advice member within the aspect.
- 
isBeforeAdviceboolean isBeforeAdvice()Return whether this is a before advice.
- 
isAfterAdviceboolean isAfterAdvice()Return whether this is an after advice.
 
-