Package org.gatein.pc.portlet.container
Interface PortletApplication
- All Known Subinterfaces:
PortletApplicationObject
- All Known Implementing Classes:
PortletApplicationImpl
public interface PortletApplication
A portlet application exposed for management.
- Version:
- $Revision: 6733 $
- Author:
- Julien Viet
-
Method Summary
Modifier and TypeMethodDescriptionReturns the context of the portlet application.getId()Return the web app id.getPortletContainer(String containerId) Returns a specific container or null if it does not existCollection<? extends PortletContainer> Returns the set of related portlet containers.
-
Method Details
-
getId
String getId()Return the web app id.- Returns:
- the id
-
getPortletContainers
Collection<? extends PortletContainer> getPortletContainers()Returns the set of related portlet containers.- Returns:
- the portlet containers
-
getPortletContainer
Returns a specific container or null if it does not exist- Parameters:
containerId- the container id- Returns:
- the portlet container
-
getContext
PortletApplicationContext getContext()Returns the context of the portlet application.- Returns:
- the context
-