Package | Description |
---|---|
bayou.form |
Html form handling.
|
bayou.http |
Http server.
|
Modifier and Type | Method and Description |
---|---|
HttpRequestImpl |
FormData.toRequest()
Create an http request that submits the form data.
|
Modifier and Type | Method and Description |
---|---|
HttpRequestImpl |
HttpRequestImpl.cookie(String name,
String value)
Set a cookie.
|
HttpRequestImpl |
HttpRequestImpl.cookies(Map<String,String> cookies)
Set the cookies.
|
HttpRequestImpl |
HttpRequestImpl.entity(HttpEntity entity)
Set the entity.
|
HttpRequestImpl |
HttpRequestImpl.header(String name,
String value)
Set a header.
|
HttpRequestImpl |
HttpRequestImpl.host(String host)
Set the "Host" header.
|
HttpRequestImpl |
HttpRequestImpl.ip(InetAddress ip)
Set the client IP.
|
HttpRequestImpl |
HttpRequestImpl.isHttps(boolean isHttps)
Set the
isHttps property.. |
HttpRequestImpl |
HttpRequestImpl.method(String method)
Set the request method.
|
static HttpRequestImpl |
HttpRequest.toGet(String uri)
Create a GET request.
|
static HttpRequestImpl |
HttpRequest.toPost(String uri,
String entityContentType,
byte[] entityBody)
Create a POST request.
|
HttpRequestImpl |
HttpRequestImpl.uri(String uri)
Set the request URI.
|