public interface AdvisorAdapterRegistry
This is an SPI interface, not to be implemented by any Spring user.
Modifier and Type | Method and Description |
---|---|
MethodInterceptor[] |
getInterceptors(Advisor advisor)
Return an array of AOP Alliance MethodInterceptors to allow use of the
given Advisor in an interception-based framework.
|
void |
registerAdvisorAdapter(AdvisorAdapter adapter)
Register the given AdvisorAdapter.
|
Advisor |
wrap(Object advice)
Return an Advisor wrapping the given advice.
|
Advisor wrap(Object advice) throws UnknownAdviceTypeException
Should by default at least support
MethodInterceptor
,
MethodBeforeAdvice
,
AfterReturningAdvice
,
ThrowsAdvice
.
advice
- object that should be an advicenull
.
If the advice parameter is an Advisor, return it.UnknownAdviceTypeException
- if no registered advisor adapter
can wrap the supposed adviceMethodInterceptor[] getInterceptors(Advisor advisor) throws UnknownAdviceTypeException
Don't worry about the pointcut associated with the Advisor, if it's a PointcutAdvisor: just return an interceptor.
advisor
- Advisor to find an interceptor forUnknownAdviceTypeException
- if the Advisor type is
not understood by any registered AdvisorAdapter.void registerAdvisorAdapter(AdvisorAdapter adapter)
adapter
- AdvisorAdapter that understands a particular Advisor
or Advice types