| The publicized entry point into Pluto. The base functionality of the portlet
container can be enhanced or even modified by PortletContainerServices.
The methods of this class have to be called in the following order:
getName | String getName()(Code) | | Retrieve the unique container name
the container name. |
getOptionalContainerServices | OptionalContainerServices getOptionalContainerServices()(Code) | | Retrieve the optional container services associated with this contianer.
the container services provided by either the portal or the defaults. |
getPortletApplicationDescriptor | PortletAppDD getPortletApplicationDescriptor(String context) throws PortletContainerException(Code) | | Retrieve the
PortletAppDD for the portlet
located at the supplied context.
Must not return null.
Parameters: context - the context of the portlet the portlet application descriptor throws: PortletContainerException - if the container has trouble obtainingthe context of the portlet, or retrievingthe PortletAppDD |
getRequiredContainerServices | RequiredContainerServices getRequiredContainerServices()(Code) | | Retreive the required container services associated with this container.
the required container services associated with this container. |
isInitialized | boolean isInitialized()(Code) | | Returns whether the container is already initialized or not.
true if the container is initialized |
|