public interface HttpServerRequest
| Modifier and Type | Method and Description |
|---|---|
String |
getAccept()
The Accept header sended by the client.
|
String |
getAcceptLanguage()
The AcceptLanguaje header sended by the client.
|
String |
getHeader(String header)
Gets the value of the especified header.
|
String[] |
getHeaders()
All the headers names in this request.
|
String |
getHost()
The host of the server the client made the HTTP request to
|
InputStream |
getInputStream()
An InputStream witch allows to read the request body for this request.
|
String |
getMethod()
The HTTP method used to made the request.
|
String |
getPath()
The requested path asked by the client.
|
String |
getProtocol()
The protocol used to made the request
|
String |
getUserAgent()
The UserAgent heather from the http request if any.
|
String getMethod()
String getProtocol()
String getHost()
String getUserAgent()
String getAccept()
String getAcceptLanguage()
String getPath()
String[] getHeaders()
String getHeader(String header)
header - The header nameInputStream getInputStream()
Copyright © 2015–2016 Bridje Framework. All rights reserved.