接口 AspectJPrecedenceInformation

所有超级接口:
infra.core.Ordered
所有已知实现类:
AbstractAspectJAdvice, AspectJAfterAdvice, AspectJAfterReturningAdvice, AspectJAfterThrowingAdvice, AspectJAroundAdvice, AspectJMethodBeforeAdvice, InstantiationModelAwarePointcutAdvisorImpl

public interface AspectJPrecedenceInformation extends infra.core.Ordered
Interface to be implemented by types that can supply the information needed to sort advice/advisors by AspectJ's precedence rules.
从以下版本开始:
4.0
作者:
Adrian Colyer
另请参阅:
  • 字段概要

    从接口继承的字段 infra.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • 方法概要

    修饰符和类型
    方法
    说明
    Return the name of the aspect (bean) in which the advice was declared.
    int
    Return the declaration order of the advice member within the aspect.
    boolean
    Return whether this is an after advice.
    boolean
    Return whether this is a before advice.

    从接口继承的方法 infra.core.Ordered

    getOrder
  • 方法详细资料

    • getAspectName

      String getAspectName()
      Return the name of the aspect (bean) in which the advice was declared.
    • getDeclarationOrder

      int getDeclarationOrder()
      Return the declaration order of the advice member within the aspect.
    • isBeforeAdvice

      boolean isBeforeAdvice()
      Return whether this is a before advice.
    • isAfterAdvice

      boolean isAfterAdvice()
      Return whether this is an after advice.