DefaultPointcutAdvisor()
Create an empty DefaultPointcutAdvisor.
Advice must be set before use using setter methods. Pointcut will normally be set also, but defaults to Pointcut.TRUE.
DefaultPointcutAdvisor(advice: Advice)
Create a DefaultPointcutAdvisor that matches all methods.
Pointcut.TRUE will be used as Pointcut.
DefaultPointcutAdvisor(pointcut: Pointcut, advice: Advice)
Create a DefaultPointcutAdvisor, specifying Pointcut and Advice.