Interface PortletApplicationRegistry
-
- All Known Implementing Classes:
PortletApplicationDeployer
public interface PortletApplicationRegistry- Version:
- $Revision: 6699 $
- Author:
- Julien Viet, Thomas Heute
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddListener(ManagedObjectRegistryEventListener listener)ManagedPortletApplicationgetManagedPortletApplication(String id)Return a portlet app using its id or null if it does not exist.Collection<? extends ManagedPortletApplication>getManagedPortletApplications()Return an immutable list all the known portlet application in the registry.voidremoveListener(ManagedObjectRegistryEventListener listener)
-
-
-
Method Detail
-
getManagedPortletApplications
Collection<? extends ManagedPortletApplication> getManagedPortletApplications()
Return an immutable list all the known portlet application in the registry.- Returns:
- the registered portlet applications
-
getManagedPortletApplication
ManagedPortletApplication getManagedPortletApplication(String id)
Return a portlet app using its id or null if it does not exist.- Parameters:
id- the portlet application id- Returns:
- a specified registered portlet application
-
addListener
void addListener(ManagedObjectRegistryEventListener listener)
-
removeListener
void removeListener(ManagedObjectRegistryEventListener listener)
-
-