if(getWebBeansType().equals(WebBeansType.MANAGED))
{
// Call Post Construct
if (WebBeansUtil.isContainsInterceptorMethod(getInterceptorStack(), InterceptionType.POST_CONSTRUCT))
{
InvocationContextImpl impl = new InvocationContextImpl(getWebBeansContext(), null, instance, null, null,
getWebBeansContext().getInterceptorUtil().getInterceptorMethods(getInterceptorStack(),
InterceptionType.POST_CONSTRUCT),
InterceptionType.POST_CONSTRUCT);
impl.setCreationalContext(ownerCreationalContext);
try
{
impl.proceed();
}
catch (Exception e)
{
getLogger().log(Level.SEVERE, WebBeansLoggerFacade.constructMessage(OWBLogConst.ERROR_0008, "@PostConstruct."), e);