| java.lang.Object com.icesoft.faces.webapp.http.portlet.PortletArtifactWrapper
PortletArtifactWrapper | public class PortletArtifactWrapper (Code) | | Because we are using a RequestDispatcher to bridge portlet handling into our servlet
based framework, we "lose" some of the characteristics of the Portlet API. When
the dispatched call arrives at the ICEfaces MainServlet, the request and response
objects are wrapped as servlet versions and no longer accessible as portlet types.
What we currently do, then, is save instances of those things that the portlet
developer might want to access and make them accessible on the other side of
the dispatched call. This class is simply the envelope they are carried in.
|
Constructor Summary | |
public | PortletArtifactWrapper(PortletConfig portletConfig, RenderRequest request, RenderResponse response) |
PORTLET_ARTIFACT_KEY | final public static String PORTLET_ARTIFACT_KEY(Code) | | |
PortletArtifactWrapper | public PortletArtifactWrapper(PortletConfig portletConfig, RenderRequest request, RenderResponse response)(Code) | | |
getPortletConfig | public PortletConfig getPortletConfig()(Code) | | |
getRequest | public RenderRequest getRequest()(Code) | | |
getResponse | public RenderResponse getResponse()(Code) | | |
|
|