Package | Description |
---|---|
ratpack.http |
The HTTP protocol.
|
ratpack.http.client |
The HTTP client.
|
Modifier and Type | Field and Description |
---|---|
static HttpMethod |
HttpMethod.DELETE
The DELETE method.
|
static HttpMethod |
HttpMethod.GET
The GET method.
|
static HttpMethod |
HttpMethod.HEAD
The HEAD method.
|
static HttpMethod |
HttpMethod.OPTIONS
The OPTIONS method.
|
static HttpMethod |
HttpMethod.PATCH
The PATCH method.
|
static HttpMethod |
HttpMethod.POST
The POST method.
|
static HttpMethod |
HttpMethod.PUT
The PUT method.
|
Modifier and Type | Method and Description |
---|---|
HttpMethod |
Request.getMethod()
The method of the request.
|
static HttpMethod |
HttpMethod.of(java.lang.String name)
Creates a method of the given name.
|
Modifier and Type | Method and Description |
---|---|
RequestSpec |
RequestSpec.method(HttpMethod method)
Specifies the request method.
|