Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
- data Verb method statusCode contentTypes a
- type Get = Verb GET 200
- type Post = Verb POST 200
- type Put = Verb PUT 200
- type Delete = Verb DELETE 200
- type Patch = Verb PATCH 200
- type PostCreated = Verb POST 201
- type GetAccepted = Verb GET 202
- type PostAccepted = Verb POST 202
- type DeleteAccepted = Verb DELETE 202
- type PatchAccepted = Verb PATCH 202
- type PutAccepted = Verb PUT 202
- type GetNonAuthoritative = Verb GET 203
- type PostNonAuthoritative = Verb POST 203
- type DeleteNonAuthoritative = Verb DELETE 203
- type PatchNonAuthoritative = Verb PATCH 203
- type PutNonAuthoritative = Verb PUT 203
- type GetNoContent = Verb GET 204
- type PostNoContent = Verb POST 204
- type DeleteNoContent = Verb DELETE 204
- type PatchNoContent = Verb PATCH 204
- type PutNoContent = Verb PUT 204
- type GetResetContent = Verb GET 205
- type PostResetContent = Verb POST 205
- type DeleteResetContent = Verb DELETE 205
- type PatchResetContent = Verb PATCH 205
- type PutResetContent = Verb PUT 205
- type GetPartialContent = Verb GET 206
- class ReflectMethod a where
- reflectMethod :: Proxy a -> Method
- data StdMethod :: *
Documentation
data Verb method statusCode contentTypes a Source
Verb
is a general type for representing HTTP verbs (a.k.a. methods). For
convenience, type synonyms for each verb with a 200 response code are
provided, but you are free to define your own:
>>>
type Post204 contentTypes a = Verb 'POST 204 contentTypes a
200 responses
Other responses
201 Created
type PostCreated = Verb POST 201 Source
POST
with 201 status code.
202 Accepted
type GetAccepted = Verb GET 202 Source
GET
with 202 status code.
type PostAccepted = Verb POST 202 Source
POST
with 202 status code.
type DeleteAccepted = Verb DELETE 202 Source
DELETE
with 202 status code.
type PatchAccepted = Verb PATCH 202 Source
PATCH
with 202 status code.
type PutAccepted = Verb PUT 202 Source
PUT
with 202 status code.
203 Non-Authoritative Information
type GetNonAuthoritative = Verb GET 203 Source
GET
with 203 status code.
type PostNonAuthoritative = Verb POST 203 Source
POST
with 203 status code.
type DeleteNonAuthoritative = Verb DELETE 203 Source
DELETE
with 203 status code.
type PatchNonAuthoritative = Verb PATCH 203 Source
PATCH
with 203 status code.
type PutNonAuthoritative = Verb PUT 203 Source
PUT
with 203 status code.
204 No Content
type GetNoContent = Verb GET 204 Source
GET
with 204 status code.
type PostNoContent = Verb POST 204 Source
POST
with 204 status code.
type DeleteNoContent = Verb DELETE 204 Source
DELETE
with 204 status code.
type PatchNoContent = Verb PATCH 204 Source
PATCH
with 204 status code.
type PutNoContent = Verb PUT 204 Source
PUT
with 204 status code.
205 Reset Content
type GetResetContent = Verb GET 205 Source
GET
with 205 status code.
type PostResetContent = Verb POST 205 Source
POST
with 205 status code.
type DeleteResetContent = Verb DELETE 205 Source
DELETE
with 205 status code.
type PatchResetContent = Verb PATCH 205 Source
PATCH
with 205 status code.
type PutResetContent = Verb PUT 205 Source
PUT
with 205 status code.
206 Partial Content
type GetPartialContent = Verb GET 206 Source
GET
with 206 status code.
class ReflectMethod a where Source
reflectMethod :: Proxy a -> Method Source
data StdMethod :: *
HTTP standard method (as defined by RFC 2616, and PATCH which is defined by RFC 5789).