public PortletConfig getPortletConfig(String applicationId, String portletName) {
return (InternalPortletConfig) portletConfigs.get(applicationId + "/" + portletName);
}
public PortletDD getPortletDescriptor(String applicationId, String portletName) {
InternalPortletConfig ipc = (InternalPortletConfig) portletConfigs.get(applicationId + "/" + portletName);
if(ipc != null) {
return ipc.getPortletDefinition();
}
return null;
}