| The lifecycle manager impl class is the implementation of lifecycle
manager. It does the real work of creating objects maintained by the
lifecycle manager.
There are three objects the lifecycle manager maintains:
- The deployment descriptor
- The portlet context
- The portlet objects
The clients can call the following interface to get these three objects in the
lifecycle of the portlet application:
getDeploymentDescriptor() : gets the deployment descriptor
getPortlet(String portletName) : gets the specific portlet
getPortletContext(InputStream in) : gets the portlet context
getPreferencesValidator(String portletName) :
gets the preferences validator if it is defined in the deployment descriptor
|