Java org.springframework.http.server ServerHttpRequest fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.http.server ServerHttpRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.http.server ServerHttpRequest.

The text is from its open source code.

Method

InputStreamgetBody()
Return the body of the message as an input stream.
HttpHeadersgetHeaders()
Return the headers of this message.
InetSocketAddressgetLocalAddress()
Return the address on which the request was received.
HttpMethodgetMethod()
Return the HTTP method of the request.
PrincipalgetPrincipal()
Return a java.security.Principal instance containing the name of the authenticated user.
InetSocketAddressgetRemoteAddress()
Return the address of the remote client.
URIgetURI()
Return the URI of the request (including a query string if any, but only if it is well-formed for a URI representation).