Novell exteNd
Director 5.2 API

com.sssw.fw.api
Interface EbiActionRequest

All Superinterfaces:
EbiPortletRequest, EbiRequest

public interface EbiActionRequest
extends EbiPortletRequest

The EbiActionRequest wraps an javax.portlet.ActionRequest

This interface allows a developer to retrieve the actual ActionRequest from an EbiRequest by casting. For example:

   EbiRequest req = ctxt.getEbiRequest();
   if (req instanceof EbiActionRequest){
     ActionRequest req = ((EbiActionRequest)req).getActionRequest();
   }
 

Since:
v5.0

Fields inherited from interface com.sssw.fw.api.EbiPortletRequest
PORTLET_CONTEXT_KEY
 
Method Summary
 javax.portlet.ActionRequest getActionRequest()
          Returns the underlying wrapped ActionRequest
 
Methods implemented from interface com.sssw.fw.api.EbiPortletRequest
getPortletContext, getPortletRequest
 
Methods implemented from interface com.sssw.fw.api.EbiRequest
getAttribute, getCookies, getHeader, getHttpServletRequest, getLocale, getLocales, getParameter, getParameterNames, getParameterValues, getPassword, getQueryString, getServer, getSession, getType, getUserID, getUserPrincipal, getVersion, hasHttpServletRequest, hasQueryString, isHttpRequest, isNewSession, setAttribute
 

Method Detail

getActionRequest

public javax.portlet.ActionRequest getActionRequest()
Returns the underlying wrapped ActionRequest
Returns:
the ActionRequest wrapped by this object
Since:
v5.0

Novell exteNd
Director 5.2 API