open class NameMatchMethodPointcutAdvisor : AbstractGenericPointcutAdvisor
Convenient class for name-match method pointcuts that hold an Advice, making them an Advisor.
Author
Juergen Hoeller
Author
Rob Harrop
See Also
NameMatchMethodPointcut
NameMatchMethodPointcutAdvisor()NameMatchMethodPointcutAdvisor(advice: Advice) |
open fun addMethodName(name: String): NameMatchMethodPointcut
Add another eligible method name, in addition to those already named. Like the set methods, this method is for use when configuring proxies, before a proxy is used. |
|
open fun getPointcut(): Pointcut |
|
open fun setClassFilter(classFilter: ClassFilter): Unit
Set the ClassFilter to use for this pointcut. Default is |
|
open fun setMappedName(mappedName: String): Unit
Convenience method when we have only a single method name to match. Use either this method or |
|
open fun setMappedNames(vararg mappedNames: String): Unit
Set the method names defining methods to match. Matching will be the union of all these; if any match, the pointcut matches. |