Package ch.ivyteam.ivy.request
Interface IHttpRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.servlet.http.HttpServletRequestgetHttpServletRequest()Gets the http serlet requestjavax.servlet.http.HttpSessiongetHttpSession()Gets the http sessionStringgetServletBasePath()Gets the servlet base pathbooleanoriginatesFromHtmlClient()Indicates whether the request was sent by a HTML based client such as a browser-
Methods inherited from interface ch.ivyteam.ivy.request.IRequest
getFirstParameter, getLocalParameter, getParameter, getParameterNames, getParameters, getParameterValues, getParentRequest, getRequestPath, setParameter, toString
-
-
-
-
Method Detail
-
getHttpServletRequest
javax.servlet.http.HttpServletRequest getHttpServletRequest()
Gets the http serlet request- Returns:
- http servlet request
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getHttpSession
javax.servlet.http.HttpSession getHttpSession()
Gets the http session- Returns:
- http session
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getServletBasePath
String getServletBasePath()
Gets the servlet base path- Returns:
- servlet base path
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
originatesFromHtmlClient
boolean originatesFromHtmlClient()
Indicates whether the request was sent by a HTML based client such as a browser- Returns:
- true if request was sent by a HTML based client, otherwise false
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
-