public interface HttpZosConnectRequest
This interface is implemented by z/OS Connect.
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getAttribute(java.lang.String attribute)
Returns the value of the named attribute as an Object, or null if no attribute of the given name exists.
|
java.util.Enumeration<java.lang.String> |
getAttributeNames()
Returns an Enumeration containing the names of the attributes available to this request.
|
java.lang.String |
getCharacterEncoding()
Returns the name of the character encoding used in the body of this request.
|
java.lang.String |
getHeader(java.lang.String key)
Returns the value of the specified request header as a String.
|
java.lang.String |
getLocalAddr()
Returns the Internet Protocol (IP) address of the interface on which the request was received.
|
java.lang.String |
getMethod()
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT.
|
java.lang.String |
getParameter(java.lang.String name)
Returns the value of a request parameter as a String, or null if the parameter does not exist.
|
java.util.Map<java.lang.String,java.lang.String[]> |
getParameterMap()
Returns a java.util.Map of the parameters of this request.
|
java.lang.String |
getPathInfo()
Returns any extra path information associated with the URL the client sent when it made this request.
|
java.lang.String |
getQueryString()
Returns the query string that is contained in the request URL after the path.
|
java.lang.String |
getRemoteAddr()
Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.
|
java.lang.String |
getRequestURI()
Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request.
|
java.lang.StringBuffer |
getRequestURL()
Reconstructs the URL the client used to make the request.
|
java.lang.String |
getServletPath()
Returns the part of this request's URL that calls the servlet.
|
java.security.Principal |
getUserPrincipal()
Returns a java.security.Principal object containing the name of the current authenticated user.
|
boolean |
isSecure()
Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS.
|
java.lang.String getHeader(java.lang.String key)
HttpServletRequest.getHeader(java.lang.String)
java.lang.String getMethod()
HttpServletRequest.getMethod()
java.lang.String getQueryString()
HttpServletRequest.getQueryString()
java.lang.String getRequestURI()
HttpServletRequest.getRequestURI()
java.lang.StringBuffer getRequestURL()
HttpServletRequest.getRequestURL()
java.lang.String getServletPath()
HttpServletRequest.getServletPath()
java.security.Principal getUserPrincipal()
HttpServletRequest.getUserPrincipal()
java.lang.String getParameter(java.lang.String name)
ServletRequest.getParameter(java.lang.String)
java.util.Map<java.lang.String,java.lang.String[]> getParameterMap()
ServletRequest.getParameterMap()
java.lang.String getCharacterEncoding()
ServletRequest.getCharacterEncoding()
java.lang.String getPathInfo()
HttpServletRequest.getPathInfo()
boolean isSecure()
ServletRequest.isSecure()
java.util.Enumeration<java.lang.String> getAttributeNames()
ServletRequest.getAttributeNames()
java.lang.Object getAttribute(java.lang.String attribute)
ServletRequest.getAttribute(java.lang.String)
java.lang.String getLocalAddr()
ServletRequest.getLocalAddr()
java.lang.String getRemoteAddr()
ServletRequest.getRemoteAddr()