InterceptorBinding interceptor
= getConfig().getInterceptorBinding(getEJBName(), false);
if (_aroundInvokeMethodName != null) {
ApiMethod method = getMethod(_aroundInvokeMethodName,
new Class[] { InvocationContext.class });
if (method == null)
throw error(L.l("'{0}' is an unknown around-invoke method",
_aroundInvokeMethodName));
// XXX: _bean.setAroundInvokeMethod(method.getMethod());
}
/* XXX:
if (interceptor != null) {
for (Class cl : interceptor.getInterceptors()) {
_bean.addInterceptor(cl);
}
}
*/
/*
if (_interceptors != null) {
for (Interceptor i : _interceptors) {
_bean.addInterceptor(i.getInterceptorJClass().getJavaClass());
}
}
*/
for (View view : _bean.getViews()) {
/*
for (BusinessMethodGenerator bizMethod : view.getMethods()) {
if (! isContainerTransaction())
bizMethod.getXa().setContainerManaged(false);
}
*/
}
/*
for (EjbMethodPattern method : _methodList) {
method.configure(_bean);
}
*/
for (RemoveMethod method : _removeMethods) {
method.configure(_bean);
}
// assembleBeanMethods();
// createViews();