return false;
}
private void refreshCustomConfigModePortletInstance() throws PortletException
{
PortletRegistry registry = (PortletRegistry) Jetspeed.getComponentManager().getComponent("portletRegistry");
PortletFactory portletFactory = (PortletFactory) Jetspeed.getComponentManager().getComponent("portletFactory");
ServletContext portalAppContext = ((ServletConfig) Jetspeed.getComponentManager().getComponent("ServletConfig")).getServletContext();
PortletDefinition portletDef = registry.getPortletDefinitionByUniqueName(this.customConfigModePortletUniqueName, true);
PortletApplication portletApp = portletDef.getApplication();
ServletContext portletAppContext = portalAppContext.getContext(portletApp.getContextPath());
this.customConfigModePortletInstance = portletFactory.getPortletInstance(portletAppContext, portletDef, false);
}