Novell exteNd
Director 5.2 API

com.sssw.fw.api
Interface EbiHttpRequest

All Superinterfaces:
EbiRequest

public interface EbiHttpRequest
extends EbiRequest

The EbiHttpRequest wraps an javax.servlet.http.HttpServletRequest

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

   EbiRequest req = ctxt.getEbiRequest();
   if (req instanceof EbiHttpRequest){
     HttpServletRequest req = ((EbiHttpRequest)req).getHttpServletRequest();
   }
 

Since:
v5.0

Method Summary
 HttpServletRequest getHttpServletRequest()
          Returns the underlying wrapped HttpServletRequest
 
Methods implemented from interface com.sssw.fw.api.EbiRequest
getAttribute, getCookies, getHeader, getLocale, getLocales, getParameter, getParameterNames, getParameterValues, getPassword, getQueryString, getServer, getSession, getType, getUserID, getUserPrincipal, getVersion, hasHttpServletRequest, hasQueryString, isHttpRequest, isNewSession, setAttribute
 

Method Detail

getHttpServletRequest

public HttpServletRequest getHttpServletRequest()
Returns the underlying wrapped HttpServletRequest
Specified by:
getHttpServletRequest in interface EbiRequest
Returns:
the HttpServletRequest wrapped by this object
Since:
v5.0

Novell exteNd
Director 5.2 API