org.gridsphere.portlet.impl |
|
Java Source File Name | Type | Comment |
ActionRequestImpl.java | Class | The ActionRequest represents the request sent to the portlet
to handle an action. |
ActionResponseImpl.java | Class | The ActionResponse interface represents the portlet
response to an action request. |
Enumerator.java | Class | Uitlity class to wraps an Enumeration around a
Collection, i.e. |
GridSphereParameters.java | Class | GridSphereParameters is the dragon's end. |
PersistencePreferenceAttribute.java | Class | |
PortalContextImpl.java | Class | The PortalContext interface gives the portlet
the ability to retrieve information about the portal calling this portlet. |
PortletConfigImpl.java | Class | The PortletConfig interface provides the portlet with
its configuration. |
PortletContextImpl.java | Class | The PortletContext interface defines a portlet view
of the portlet container.
The PortletContext also makes resources available
to the portlet. |
PortletPreferencesImpl.java | Class | The PortletPreferences interface allows the portlet to store
configuration data. |
PortletRequestDispatcherImpl.java | Class | The PortletRequestDispatcher interface
defines an object that receives requests from the client
and sends them to the specified resources (such as a servlet,
HTML file, or JSP file) on the server. |
PortletRequestImpl.java | Class | The PortletRequest defines the base interface to provide client
request information to a portlet. |
PortletResponseImpl.java | Class | The PortletResponse defines the base interface to assist a
portlet in creating and sending a response to the client.
The portlet container uses two specialized versions of this interface
when invoking a portlet, ActionResponse and
RenderResponse . |
PortletSessionImpl.java | Class | The PortletSession interface provides a way to identify a user
across more than one request and to store transient information about that user.
A PortletSession is created per user client per portlet application.
A portlet can bind an object attribute into a PortletSession by name.
The PortletSession interface defines two scopes for storing objects:
APPLICATION_SCOPE
PORTLET_SCOPE
All objects stored in the session using the APPLICATION_SCOPE
must be available to all the portlets, servlets and
JSPs that belongs to the same portlet application and that handles a
request identified as being a part of the same session.
Objects stored in the session using the PORTLET_SCOPE must be
available to the portlet during requests for the same portlet window
that the objects where stored from. |
PortletURLImpl.java | Class | The PortletURL interface represents a URL
that reference the portlet itself.
A PortletURL is created through the RenderResponse .
Parameters, a portlet mode, a window state and a security level
can be added to PortletURL objects. |
PreferencesValidatorImpl.java | Class | The PreferencesValidator allows to validate the set of
preferences of the associated portlet just before they are
stored in the persistent store. |
RenderRequestImpl.java | Class | The RenderRequest represents the request sent to the portlet
to handle a render. |
RenderResponseImpl.java | Class | The RenderResponse defines an object to assist a portlet in
sending a response to the portal. |
SportletProperties.java | Class | SportletProperties conatins all the "hidden" variable names
that get transmitted between the portlet container and the portlets to
request a particular portlet lifecycle action. |
StoredPortletResponseImpl.java | Class | |