337338339340341342343344345346347
InterceptorBinding binding = new InterceptorBinding(bean, interceptor); interceptorBindings.add(binding); // execute converter.processInterceptors(ejbJar); // verify context.assertIsSatisfied(); }
369370371372373374375376377378379
method.setMethodParams(new MethodParams()); binding.setMethod(method); interceptorBindings.add(binding); // execute converter.processInterceptors(ejbJar); // verify context.assertIsSatisfied(); }
399400401402403404405406407408409
InterceptorBinding binding = new InterceptorBinding(bean, interceptor); binding.setExcludeDefaultInterceptors(true); interceptorBindings.add(binding); // execute converter.processInterceptors(ejbJar); // verify context.assertIsSatisfied(); }
433434435436437438439440441442443
463464465466467468469470471472473
InterceptorBinding binding = new InterceptorBinding(bean, interceptor); binding.setExcludeClassInterceptors(true); interceptorBindings.add(binding); // execute converter.processInterceptors(ejbJar); // verify context.assertIsSatisfied(); }
497498499500501502503504505506507