949596979899100101102103104
MethodDescriptor md = new MethodDescriptor(m, MethodDescriptor.EJB_BEAN); binding.setBusinessMethod(md); } ejbBundle.prependInterceptorBinding(binding); } return getDefaultProcessedResult(); }
125126127128129130131132133134135
// info at the front. The binding information from the descriptor // is ordered, but there is no prescribed order in which the // annotations are processed, so all that matters is that it's // before the descriptor bindings and that the descriptor binding // order is preserved. ejbBundle.prependInterceptorBinding(binding); } return getDefaultProcessedResult(); }
9293949596979899100101102
Method m = (Method) ainfo.getAnnotatedElement(); MethodDescriptor md = new MethodDescriptor(m, MethodDescriptor.EJB_BEAN); binding.setBusinessMethod(md); ejbBundle.prependInterceptorBinding(binding); } return getDefaultProcessedResult(); }
106107108109110111112113114115116
138139140141142143144145146147148
100101102103104105106107108109110
102103104105106107108109110111112
md = new MethodDescriptor(cl.getSimpleName(), null, parameterClassNames, MethodDescriptor.EJB_BEAN); } // else throw Exception? binding.setBusinessMethod(md); ejbBundle.prependInterceptorBinding(binding); } return getDefaultProcessedResult(); }
MethodDescriptor md = new MethodDescriptor(cl.getSimpleName(), null, parameterClassNames, MethodDescriptor.EJB_BEAN); binding.setBusinessMethod(md); } ejbBundle.prependInterceptorBinding(binding); } return getDefaultProcessedResult(); }
135136137138139140141142143144145
979899100101102103104105106107