@Override public V visit(InterceptorBinding binding) { return message(binding, "Binding interceptors " + binding.getInterceptors() + " to methods matching " + binding.getMethodMatcher() + " on classes matching " + binding.getClassMatcher()); }
@Override public Boolean visit(InterceptorBinding command) { injector.state.addMethodAspect( new MethodAspect( command.getClassMatcher(), command.getMethodMatcher(), command.getInterceptors())); return true; }
@Override public Boolean visit(InterceptorBinding command) { injector.state.addMethodAspect(new MethodAspect( command.getClassMatcher(), command.getMethodMatcher(), command.getInterceptors())); return true; }