protected void postConstructDefault(T instance)
{
if(getWebBeansType().equals(WebBeansType.MANAGED))
{
//Inject Resources
OpenWebBeansResourcePlugin resourcePlugin = PluginLoader.getInstance().getResourcePlugin();
if(resourcePlugin != null)
{
resourcePlugin.injectResources(instance);
}
// Call Post Construct
if (WebBeansUtil.isContainsInterceptorMethod(getInterceptorStack(), InterceptorType.POST_CONSTRUCT))
{