org.as2lib.core.BasicClass +--org.as2lib.aop.AopConfig
AopConfig
declares methods to configure core parts of the AOP framework.
static public function setDynamicAdviceFactory(factory:DynamicAdviceFactory):Void
Sets a new dynamic advice factory.
factory | the new dynamic advice factory |
static public function getDynamicAdviceFactory(Void):DynamicAdviceFactory
Returns the set or the default dynamic advice factory. The defult factory is an instance of the SimpleDynamicAdviceFactory class.
the set or the default dynamic advice factory
static public function setPointcutFactory(factory:PointcutFactory):Void
Sets a new pointcut factory.
factory | the new pointcut factory |
static public function getPointcutFactory(Void):PointcutFactory
Returns the set pointcut factory or the default one. The default one is an instance of the DynamicPointcutFactory class.
the set or default pointcut factory
static public function setMatcher(newMatcher:Matcher):Void
Sets a new matcher.
newMatcher | the new matcher |
static public function getMatcher(Void):Matcher
Returns either the set or the default matcher. The default matcher is an instance of the WildcardMatcher class.
the set or default matcher