public interface

AspectJPrecedenceInformation

implements Ordered
org.springframework.aop.aspectj.AspectJPrecedenceInformation
Known Indirect Subclasses

Class Overview

Interface to be implemented by types that can supply the information needed to sort advice/advisors by AspectJ's precedence rules.

See Also
  • org.springframework.aop.aspectj.autoproxy.AspectJPrecedenceComparator

Summary

[Expand]
Inherited Constants
From interface org.springframework.core.Ordered
Public Methods
abstract String getAspectName()
The name of the aspect (bean) in which the advice was declared.
abstract int getDeclarationOrder()
The declaration order of the advice member within the aspect.
abstract boolean isAfterAdvice()
Return whether this is an after advice.
abstract boolean isBeforeAdvice()
Return whether this is a before advice.
[Expand]
Inherited Methods
From interface org.springframework.core.Ordered

Public Methods

public abstract String getAspectName ()

The name of the aspect (bean) in which the advice was declared.

public abstract int getDeclarationOrder ()

The declaration order of the advice member within the aspect.

public abstract boolean isAfterAdvice ()

Return whether this is an after advice.

public abstract boolean isBeforeAdvice ()

Return whether this is a before advice.