interceptorInstances.put(beanClass.getName(), bean);
// Invoke post construct method
callContext.setCurrentOperation(Operation.POST_CONSTRUCT);
List<InterceptorData> callbackInterceptors = deploymentInfo.getCallbackInterceptors();
InterceptorStack interceptorStack = new InterceptorStack(bean, null, Operation.POST_CONSTRUCT, callbackInterceptors, interceptorInstances);
interceptorStack.invoke();
// Wrap-up everthing into a object
instance = new Instance(deploymentInfo, primaryKey, bean, interceptorInstances, entityManagers);
} catch (Throwable callbackException) {