return null;
}
public PortletAppDD getPortletApplicationDescriptor(String applicationId) throws PortletContainerException {
InternalPortletContext ipc = (InternalPortletContext) portletContexts.get(applicationId);
if (ipc != null) {
return ipc.getPortletApplicationDefinition();
}
LOG.warn("Unable to retrieve portlet application descriptor: '"+applicationId+"'");
return null;
}