Package org.gatein.pc.portlet.container
Interface PortletApplication
-
- All Known Subinterfaces:
PortletApplicationObject
- All Known Implementing Classes:
PortletApplicationImpl
public interface PortletApplicationA portlet application exposed for management.- Version:
- $Revision: 6733 $
- Author:
- Julien Viet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PortletApplicationContextgetContext()Returns the context of the portlet application.StringgetId()Return the web app id.PortletContainergetPortletContainer(String containerId)Returns a specific container or null if it does not existCollection<? extends PortletContainer>getPortletContainers()Returns the set of related portlet containers.
-
-
-
Method Detail
-
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
PortletContainer getPortletContainer(String containerId)
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
-
-