interceptorInfo = webBeansContext.getInterceptorResolutionService().
calculateInterceptorInfo(bean.getTypes(), bean.getQualifiers(), annotatedType);
proxyFactory = webBeansContext.getInterceptorDecoratorProxyFactory();
if (bean instanceof PassivationCapable)
{
PassivationCapable passivationCapable = (PassivationCapable)bean;
passivationId = passivationCapable.getId();
}
methodInterceptors = new HashMap<Method, List<Interceptor<?>>>();
for (Map.Entry<Method, BusinessMethodInterceptorInfo> miEntry : interceptorInfo.getBusinessMethodsInfo().entrySet())
{